jatb 0 Report post Posted January 2, 2011 Now that I have created a custom menu for my primary nav bar, what code do I use to change the font size and color for it? Share this post Link to post Share on other sites
Kate 3 Report post Posted January 2, 2011 Hi Frank - Do you have a link to the site? Or is it local? Something like this should work: #menu-nav{font-size:1.3em; /* or whatever size you want*/} #menu-nav a{color:#000000; /*or whatever color you want*/} #menu-nav a:hover{color:#dddddd; /*or whatever color you want*/} Share this post Link to post Share on other sites
jatb 0 Report post Posted January 2, 2011 Hi Kate: Here's the link: http://apermanentgrin.com/ I added the code you suggested under CSS but it did nothing. Any other thoughts? Thanks! Share this post Link to post Share on other sites
jatb 0 Report post Posted January 2, 2011 The fonts size I want to change is what is in the top--under the header. Share this post Link to post Share on other sites
Andrew 207 Report post Posted January 3, 2011 Kate had the idea down, I think the selector was wrong... try this... ` .main-nav{font-size:1.3em; /* or whatever size you want*/} .main-nav a{color:#000000; /*or whatever color you want*/} .main-nav a:hover{color:#dddddd; /*or whatever color you want*/} ` Also, are you using firebug? It can help you find these Share this post Link to post Share on other sites
jatb 0 Report post Posted January 3, 2011 Thanks, Andrew: The FONT SIZE worked! BUT, neither of the other two did anything. Here is how I have it: .main-nav{font-size:20px} .main-nav a{color: #006699} .main-nav a:hover{color:#006697} I have no idea what firebug is, but I will look into it :-) Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted January 4, 2011 Take a look here: http://www.pagelines.com/docs/changing-colors-fonts Will help you save a lot of time in the long run. Thanks, Bryan Share this post Link to post Share on other sites
jatb 0 Report post Posted January 4, 2011 Will do. Thank you! Share this post Link to post Share on other sites