SimonZula Posted September 14, 2021 Share Posted September 14, 2021 Hi, I spent so much time to try to fix it, but I still fight with small problem. Where and how I could change this top horizontal menu to make it center? Link to comment Share on other sites More sharing options...
Luis C Posted September 24, 2021 Share Posted September 24, 2021 Override your current CSS or create a new class for the menu, then just use flexbox to vertically center the menu. You can try setting the full container as flex and center the individual containers inside (Logo - Menu - Search) list inside the container: .header-top > .container > .row { display:flex; align-items:center } There are other methods, but they need you to modify other containers aswell, so this one kinda "fits". Also, you'll have to play with some heights , margins and paddings to make everything fall into position as it should. Please remember to adjust accordingly in your media queries. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now