Tagged: mobile menu
Hi Guys,
For some reason my menu on mobile is way too close to the right side of the screen.
Any way to fix it?
Hey Dee007,
Can we possibly have temporary access into your Dashboard so we can have a closer look?
Best regards,
Sarah
Sure
See Private content for link
Hey!
Thanks for the access. I found that it’s because of the first part of your Quick CSS. This part:
#header .container {
max-width: 100%!important;
width: 100%!important;
}
To fix that, let’s restrict that code to screens that are bigger than 767px. (Or, screens that are NOT mobile phones.) Please use this code instead:
@media only screen and (min-width: 767px) {
#header .container {
max-width: 100%!important;
width: 100%!important;
}
}
Best regards,
Sarah
BRILIENT!!!
thank you Sarah!