Hi all,
I am customizing a site and, I have two problems:
1) the logo does not resize according to the size of the screen but only from desktop to mobile
2) in the case of smaller monitors, the menu must overlap the logo and become illegible
What can be done to solve the problem?
Thank you for your support
Hey amepro,
Please provide a link to the site/page in question so we can look into this issue further.
Best regards,
Jordan Shannon
Hi,
Have you considered switching to mobile sooner? Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 1024px) {
nav.main_menu {
display: block !important;
}
#avia-menu .menu-item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
Change the value 1024 to the pixel value of your choice.
Best regards,
Jordan Shannon
Hi Jordan
and I changed value till 400px but nothing changes…
Hi,
You would actually need a number larger than 1024. The idea is to go mobile before the collision happens.
Best regards,
Jordan Shannon