Centering Menu Items in CSS Menu Action

I can get my overall menu to be centered, but I’m having difficulty figuring out how to get actual menu items to center with in their allotted space. Some menu titles are short (3-letters) and some long (12-letters). I want them to be centered within their equally sized menu “button.”

What am I overlooking?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Okay, so you’re using fixed width menu items, and you need these items to center within these fixed area’s?

You will need to add an extra class style to your stylesheet:

#fwNav1 {
    text-align: center;
}

#fwNav1 already is present, without the custom alignment, so you’ll just have to manually add it to your styles in order to center the list items.

Richard


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

You will need to add an extra class style to your stylesheet:

You can just select all the menu text inside the CSS menu container and center align it.

D


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Thank you both!

Dave, its always the simple solution. Kept thinking I was overlooking something in the action itself. — Thanks!


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options