how can i Align Header Menu (main and top) CENTERED?
Hi alfaweb2!
Add this to your custom CSS.
nav.main_menu {
left: 50%;
right: auto !important;
transform: translateX(-50%);
width: 600px;
}
Best regards,
Elliott
Thank you Elliott looks Great!!!! The next issue it to bring the search to the right –> http://i.imgur.com/cfpsWtH.jpg
How can i do this?
Hey!
if it’s not really centered for you then just adjust Elliott’s code. Change for example the “left” value. Play a little bit around until you are satisfied. For the search button use this code:
li#menu-item-search {
right: -390px;
}
and adjust as needed by yourself.
Cheers!
Andy