Hi,
I changed the mobile menu activation to 1024px following the enfold documentation (http://kriesi.at/documentation/enfold/switching-to-mobile-menu-on-higher-resolutions/)
Quick CSS
@media only screen and (max-width: 1024px) {
#mobile-advanced, #advanced_menu_toggle, #advanced_menu_hide { display: block; }
nav.main_menu { display: none; }}
#wrap_all {
position: relative !important;
}
But between approximatively 1024px and 990px the mobile menu is activate, but the menu location still display.
Is it a way to change it ?
Thanks
Hey ppi37,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
@media only screem and (max-width:1024px) {
.html_header_top.html_header_sticky.html_large.html_bottom_nav_header #main {
padding-top: 118px!important;
}}
Best regards,
Vinay
Hi Vinay,
Thanks but no changes
Hi!
Vinay had a syntax error.
Please try the following
@media only screen and (max-width:1024px) {
.html_header_top.html_header_sticky.html_large.html_bottom_nav_header #main {
padding-top: 118px!important;
}}
let us know if we can do anything else for you
Cheers!
Basilis
Hi Basilis,
It seems to work perfectly now.
Thanks a lot