Auto-nav: how do I prevent 2-word page titles from wrapping at their interior space chars?

Permalink
I'm new at this, so I may be missing something obvious, but here goes.

We have a site in a modifed Greek Yogurt theme, with a number of pages listed in the auto-nav bar. When one of he page names has a space within its title (e.g., "About Me"), the line within the auto-nav bar wraps at the space, splitting that nav bar entry across two lines. (See image for better way to understand it.)

Is there a way to keep the space-position splits from happening? Thanks.

1 Attachment

 
exchangecore replied on at Permalink Reply
exchangecore
Try changing your header ul li to use an inline-block instead of just inline.

#header ul li{
    display:inline-block;
}
cradock replied on at Permalink Reply
Thanks. Although, being a newbie, I need to ask where to find and change that value. Can you point me to it?
shotrox replied on at Permalink Reply
shotrox
to find out where the CSS file is located just use a tool like firebug to check the CSS on the live site - it will tell you where the CSS file is located.

Can you provide a link to yoru site? then I can check for you
exchangecore replied on at Permalink Reply
exchangecore
Currently it looks like the style for this is in your greek yogurt theme typography.css file.
cradock replied on at Permalink Reply
Yes, that did it. Thanks a lot!