Menu Colors

Discussion in 'HTML & Website Design' started by hand, Jul 30, 2013.

  1. #1
    Can someone tell me what file to look at in order to change the menus on this site from white to black letters.
    http://174.121.2.221/~stanthon/

    I've looked at the style.css etc but maybe i'm just missing it somewhere...

    Thks
     
    hand, Jul 30, 2013 IP
  2. scottlpool2003

    scottlpool2003 Well-Known Member

    Messages:
    1,708
    Likes Received:
    49
    Best Answers:
    9
    Trophy Points:
    150
    #2
    In style.css


    
    .navWrapper ul li a {
     
    }
    
    Code (markup):
     
    scottlpool2003, Jul 30, 2013 IP
  3. hand

    hand Well-Known Member

    Messages:
    658
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    130
    #3
    I see this:

    .navWrapper ul li a{
    display:block;
    padding:0 12px;
    color:#fff;
    line-height:42px;
    font-style:italic;
    }
    .navWrapper ul li a:hover,.navWrapper ul li.active a, .navWrapper ul li.current_page_item a{
    background:#b30d0d;
    }
    .navWrapper ul li a:hover:after, .navWrapper ul li.active:after, .navWrapper ul li.current_page_item:after{
    border-color: #b30d0d transparent;
    border-style: solid;
    border-width: 14px 14px 0 0;
    bottom: -14px;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    width: 0;

    }
    But don't see "white" which is the current color to change.
     
    Last edited: Jul 30, 2013
    hand, Jul 30, 2013 IP
  4. GMF

    GMF Well-Known Member

    Messages:
    855
    Likes Received:
    113
    Best Answers:
    19
    Trophy Points:
    145
    #4
    Well, the

    color:#fff;

    in .navWrapper ul li a is white. #fff is hexadecimal colour code for white. Black would be

    #000
     
    GMF, Jul 30, 2013 IP
  5. hand

    hand Well-Known Member

    Messages:
    658
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    130
    #5
    Thank you very much.
     
    hand, Jul 30, 2013 IP