Where is the horizontal menu styles controlled at?

Last post 05-03-2009 2:35 AM by Hyacinth Broadchest. 1 replies.

Sort Posts:

  • Where is the horizontal menu styles controlled at?

    03-25-2009, 1:49 PM
    • Member
      1 point Member
    • smejus57
    • Member since 04-21-2008, 1:03 PM
    • Posts 13

    Where are the CSS styles for the horizontals navigation at the top (and bottom) controlled? I want to change the color of the text. 

  • Re: Where is the horizontal menu styles controlled at?

    05-03-2009, 2:35 AM

    The top nav is a series of links in a div called nav-main.

    So look in the style-sheet for this bit:

    #nav-main a:link,
    #nav-main a:visited {
    	color:#FFFFFF;
    	text-decoration:none;
    }
    
    #nav-main a:hover {
    	color:#D4E7F8;
    	text-decoration:underline;
    }
    
    #nav-main a:active {
    	color:#FFFFFF;
    }
    
    As you can see, it is possible to have diferent colours for active, hover and visited links within that div.
    They have done it this way so as not to override settings on other links outside of the nav-main div.
Page 1 of 1 (2 items)