Hi there,
I am trying to put the menue for this website in the center: http://katyshotteronline.com/
I have gone into appearance, theme options, design options, custom header, and there is no way to put the menu in the center. Can you please help?
Many thanks.
You could try to add some Custom CSS, something like .hgroup-right { float: none; margin-left: auto; margin-right: auto; }
.hgroup-right { float: none; margin-left: auto; margin-right: auto; }
Just from the top of my head, haven’t tested it….
Hi,
Thanks for that! That makes the navigation menu go to the left… Any thoughts on where to go from here? Really appreciate your help!
Hi Benlifton,
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS add the following CSS code and Click on save all changes button:
.hgroup-right { float: none; } #access { float: none; text-align: center; } #access li { display: inline-block; float: none; }
Thank you!