Tagged: CSS, Header Secondary Menu, responsive
Hi,
I am having an issue with the Header Secondary Menu when displaying on Responsive Screens.
When the Enfold theme is displayed Full Width, both the Main Menu and Secondary Menu are on “One Row” which is what I want.
But when viewed on a responsive display @media (max-width: 767px) the Secondary Menu has the following layout issues:
1. creates a “second header row” below the Main Menu
2. the secondary menu text becomes “centered”
3. overlays the header Logo
My goal is to have the Responsive Header look exactly like the Full Width Header, with the Social Icons on the right, and the WooCommerce Cart links on the left.
Does anyone have a CSS fix I can add to make this happen?
Many thanks!
Hey garycedar!
Add this to your custom CSS.
@media only screen and (max-width: 767px) {
.responsive #header .sub_menu, .responsive #header_meta .sub_menu > ul { position: absolute !important; top: 1px !important; right: 0px !important; }
}
Regards,
Elliott