Hide Offcanvas Toggler On Desktop Websites - Question | JoomShaper

Hide Offcanvas Toggler On Desktop Websites

S

Stephan

Template 2 months ago

Hello,

i added to the Custom CSS Field in Helix Ulitmate this Code:

@media screen and (max-width: 1280px) {
    .sp-megamenu-parent {
        display: none !important;
    }
    #offcanvas-toggler {
        display: flex !important;
    }
}

but the Toggler for the Offcanvas Menu is Still shown on Dektop Computer when i visit the site. Can you pleas tell me what i´m doing wrong?

0
1 Answers
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 2 months ago #150245

Hi

Thanks for contacting us. You can use this custom CSS in your custom.css file


@media only screen and (max-width: 1700px) and (min-width: 960px)  {
#site-header.full_screen-header .menu-bar {
    display: none !important;
}
}

-Regards.

0