Different Visualization From IOS And Other Mobile - Question | JoomShaper
🎃 Halloween Sale is Live! Get 35% OFF on all plans. Sale ends soon! Get Offer

Different Visualization From IOS And Other Mobile

N

Nicolò

Helix Framework 6 months ago

Hi, I've noticed that some css behaviors are not shown correctly only in iOS. I.e. link colors of megamenu or content tabs, heading height, off canvas menu links color... I'll send you some example: https://ibb.co/BVGLrqD5 https://ibb.co/mr7rCny3

You can see the website here : https://www.studiocolaci.it/home

Thank you

Nicolò

0
1 Answers
Ziaul Kabir
Ziaul Kabir
Accepted Answer
Support Agent 6 months ago #190345

Hello,

Please, use this css in your custom css, Check this documentation to add custom css: https://www.joomshaper.com/documentation/helix-framework/custom-code-css-js-meta

#sp-header{
height: 100px !important;
}
@media (max-width: 1199.98px) {
    .sp-page-builder .page-content #servizi {
        margin-top: 100px;
        padding-top: 0 !important;
                padding-bottom: 0 !important;
    }
}
.sp-megamenu-parent li.active a,
.nestfund-service-tab.sppb-addon-tab .sppb-nav-tabs li.active a{
    color: #98d6d6 !important;
}
.sp-megamenu-parent li a,
.nestfund-service-tab.sppb-addon-tab .sppb-nav-tabs li a{
color: #16aca7 !important;
}

sp-megamenu-parent li:hover a,
.nestfund-service-tab.sppb-addon-tab .sppb-nav-tabs li:hover a{
    color: #128080 !important;
}

Thanks

0