Viewing 3 reply threads
You must be logged in to reply to this topic.
When the browser is scaled to 1024px, the top menu drops below the header and into the content area, overlaying it. Is there a way I can adjust the padding between the logo/navigation menu to keep the full top menu open instead of having it drop into the content area or responsively change to the mobile menu version?
Here is a screengrab
Hello,
You could decrease the menu items padding/margin in General Options > Header Options > Menu Options > Menu Items padding/margin, until the menu width is smaller than the header in this width and can be contained by header. Or add this code into your custom css box:
@media (max-width: 1024px){
.mobile_small_menu {
display: block;
left: 85%;
}
header#header #navigation {display: none;}
}
It will display the responsive menu when that width is reached.
Best regards!
Thanka Mihaila! I would prefer to keep the full navigation instead of having it default to the mobile small menu for 1024 browser widths. However even after removing all the padding, I still can’t do it. Is there a default width for the logo image? I tried to scale the actual media file smaller, but it only rescaled to fit bigger when viewed in the browser.
Please advise.
Hello,
I see the menu is showing up ok in ipad landscape, screenshot. If you are not seeing this, please clear cache and refresh page. You can decrease the space between menu items even further by adding this code into your custom css box:
@media (max-width: 1100px) and (min-width: 981px){
.header_1 nav .menu > li {
margin-left: -5px;
margin-right: -5px;
}}
Best regards!
You must be logged in to reply to this topic.