Quote Originally Posted by sam_m View Post
I apologise if this has been covered, but I havent found anything of yet, isit possible to have each category on the menu to have a different width, for example... If I had

Home : About Us : Questions and Answers : Gallery : Contact us

At the moment the spacing for each category on the menu is exactly to whatever ive set the % in the CSS, but the questions and answers is too long and drops down a line making it look untidy. Instead of having the same width for each category no matter how long the description is, can I set a margin for each Category listed? So basically it would be the gap/margin between each category which I need to define rather than the actual box its in.

Hope that makes sense
Kind Regards
Sam

Just added an image of what I mean to make it clearer, I want to get the layout similar to the top, but because of the same width of category box, im getting the drop down....
You can do this by removing the width percentages, and instead try messing with the left and right padding that looks like this:

padding: .6em 0;

(The 0 is the current left and right padding, the .6em is for the top and bottom padding)