Can’t help without seeing the problem.
BTW, if you are really using WP2.5.8- that’s ancient and a huge security risk – you need to update that ASAP – see:
http://codex.ww.wp.xz.cn/Upgrading_WordPress_Extended#Upgrading_Across_Multiple_Versions
Thank you for your quick reply.
I have now updated my site to WP4.1 – you can see my problem if you have a look at this site: http://www.tagc.dk
…as you can see “about us” has been moved down and I would like it in the same line as the other menus.
Can you help me?
Try adding to custom CSS:
#primary-nav ul.main-nav {
width: auto;
}
I copied your link into the custom CSS, but it did not help. Do you have another suggestion?
#primary-nav ul.main-nav {
width: 100%;
}
Because you are not working with a responsive theme you could also try width:810px;
I tried both width 100% and 810px, but it hasn’t changed a thing. Do you have another suggestion?
Well, the theme you are using uses a CSS preprocessor so it’s generating dynamic css after your style sheet loads.
The quick and dirty answer is just add !important; like this:
#primary-nav ul.main-nav {
width: 100% !important;
}
of course there might be a widget that is supposed to go in the space to the right of the menu like a search widget or something so you might want to make the menu fit in the smaller space by shrinking up the padding on links instead:
ul.sf-menu li a {
padding: 10px 9px 15px !important;
}