PDA

View Full Version : How can I change the Nav bar font type?


Xandertures
Mar-09-2008, 03:35 PM
I'm sorry to ask such a stupid question, but I've read through several pages and can't seem to figure out how to only change the font type for the nav bar buttons. I used the basic tutorial to get it all setup and know how to change fonts for the entire site, but I only wish to change it for that one item.

Thanks for the help!
Nick

www.stillframesbynick.com

denisegoldberg
Mar-09-2008, 03:44 PM
...how to only change the font type for the nav bar buttons.
Add the font details to your navcontainer entry. For example:

#navcontainer ul {
margin: 0;
padding: 0;
list-style-type: none;
font-family: comic sans ms, verdana;
font-size: 110%;
text-align: center;
}

To see a list of the "safe" fonts, see http://typetester.maratz.com/.

--- Denise

Xandertures
Mar-09-2008, 06:42 PM
It works like a charm, thank you so much for the fast and accurate help!