Since the last update I’m having a weird issue with the ‘advanced toggle menu’ button, for the main navigation, once the responsive site goes to mobile size. There is a huge amount space between the top and bottom of the button and I can’t figure out why. There is no padding or margin on the button that I can see. Can someone please have a look.
Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 767px) {
#header_main .container {
height: 140px !important;
}
}
Cheers!
Josue
Thanks for the quick reply. I added the code to the quick css but there doesn’t seem to be any change.
Try with this code instead:
@media only screen and (max-width: 767px) {
.responsive #header_main .container {
height: 140px !important;
}
}
Regards,
Josue
YESS!!! That worked. Thanks so much.
You are welcome, glad to help :)
Regards,
Josue