Tagged: screen resolution
Hi,
Im having an issue with our site when it gets resized/set to half screen with resolution 1024×768, Everything is responsive, but the header/company logo in the top left overlaps our top menu on the right side. If my visitors come and see the site, it is difficult for me to continue visiting the site.
I found this code, but there is not anything I put it in Quick Css and Theme/Enfold/css/custom css, but the problem continue:
@media only screen and (max-width: 1024px) {
nav.main_menu, #menu-item-search {
display: block !important;
}
.menu-item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
Thanks so much!
Hey honkatech,
Please try this instead:
@media only screen and (max-width: 1230px) {
nav.main_menu {
display: block !important;
}
#avia-menu .menu-item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
Best regards,
Rikard
Hi,
I put it in Quick Css and Theme/Enfold/css/custom css,
@media only screen and (max-width: 1230px) {
nav.main_menu {
display: block !important;
}
#avia-menu .menu-item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
but the problem continue,
the header/company logo in the top left overlaps our top menu on the right side.