Hello,
I have the following CSS that adjusts the Header when minimizing the page:
@media only screen and (max-width: 1240px) { .title_container .breadcrumb {
left: 45px;
right: auto;
top: 83%;
}}
@media only screen and (max-width: 1130px) and (min-width: 990px) {
.logo * {
max-width: 77%;
top: 6px;
}}
It appears to still have an overlap of the menu over the logo (see image link below).
I’ve tried adjusting the max-width and min-width however there still seems to be an overlap.
Please help.
Thank you!
Hey tlchase!
Add this to your custom CSS.
@media screen and (max-width: 1130px) {
#advanced_menu_toggle { display: block !important; }
nav.main_menu { display: none !important; }
}
Cheers!
Elliott
Thanks Elliott, that worked great!!!