I am using the Enfold theme with ‘Flat Business Demo’ and would like to center the main navigation closer to the bottom of the green area under the logo. Is this something I can do with this theme?
I have included a link below of the what I would like the header area to look like.
Hey ScottYetter,
You can fix it adding this custom code:
.main_menu {
margin-left: 30% !important;
}
Best regards,
John Torvik
This worked ok.
Is there a way to make sure it is always centered, instead of using a percentage of margin-left as this does not always center the menu?
Hi!
Please remove the code John provided then go to Enfold theme options > Header and choose to display “Logo center, menu below” option and then add following code to Quick CSS field
.html_header_top.html_logo_center .logo {
left: 0;
-webkit-transform: none;
-ms-transform: none;
transform: none;
}
Cheers!
Yigit
That worked perfectly, thank you!