I want to center the menu bar, but can't seem to track down the proper CSS to do so. Please help!
The blog I need help with is leonbibb.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
I want to center the menu bar, but can't seem to track down the proper CSS to do so. Please help!
The blog I need help with is leonbibb.com.
To center the main menu in the Origin theme, add this to your Appearance → Custom Design → CSS editor:
#menu-primary {
text-align: center;
width: 100%;
}
#menu-primary .menu {
float: none;
display: inline-block;
}
This topic has been closed to new replies.