how can i centre all my tabs on the menu bar rather than them all appearing to the left side?
The blog I need help with is conductiveeducationsa.com.au.
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
how can i centre all my tabs on the menu bar rather than them all appearing to the left side?
The blog I need help with is conductiveeducationsa.com.au.
Try this:
#branding .only-search + #access div {
padding: 0;
}
#access div > ul {
display: block;
float: none;
width: 628px;
margin: 0 auto;
}
Note that I've given the menu a width of 628px. If you add new top level menu items, you will need to adjust that value.
This topic has been closed to new replies.