How could I stretch the header menu to about 90% of screen width instead of fixed px? I tried the following, but doesn’t seem to affect it:
#header_main > .container {width:90%;}
Adding !important doesn’t change it either.
Hi DavyE!
What type of header are you using right now? Please check Enfold > Header > Header type. You can adjust the header menu width by increasing the padding between menu items.
.main_menu ul:first-child > li > a {
padding: 0 15px;
}
Use Media Queries to adjust it on different screen sizes.
Best regards,
Ismael
Sorry, that’s not really what I meant. I’m trying to get the logo align to the left of the browser and the menu to the right of the browser. Similar to this: http://goo.gl/PPwK5h
Hi!
You can try to extend the width of the header container – insert following code into the quick css field and adjust the percentage value if necessary:
#header_main .container, .main_menu ul:first-child > li a {
width: 95%;
}
Cheers!
Peter
That’s basically the same as what I had tried. Yet for some reason it does work on my live site, but not on my test site.
Thanks for the assistance.