Quick question:
Does anyone know how to center the main nav menu? I’ve come close by adding
display: table;
margin: 0 auto;
float: none;
to #access ul in my child theme but when I tested it for mobile, the menu items do not span the full width of the menu and page.
Would show screenshots but don’t think I can attach them to this post.
Any suggestions or help will be much appreciated?
Thanks!
]]>Try adding the following code in your CSS:
#access ul {
float:none;
width:750px;
margin: 0 auto;
}
]]>Cheers.
]]>