Why is this color off?

Discussion in 'HTML & Website Design' started by Pudge1, Jul 6, 2015.

  1. #1
    www.007vg.com
    the links should be showing up navy blue as I set them in the style.css file but it's not showing that on the page

    Any help would be appreciated
     
    Pudge1, Jul 6, 2015 IP
  2. PoPSiCLe

    PoPSiCLe Illustrious Member

    Messages:
    4,623
    Likes Received:
    725
    Best Answers:
    152
    Trophy Points:
    470
    #2
    No idea what you're talking about - the a-tags are set to #444, and there is nothing assigned to them under nav li a - only on hover and active. Learn to CSS, please. (Also, you have a gazillion CSS-files - why?)
     
    PoPSiCLe, Jul 6, 2015 IP
  3. Pudge1

    Pudge1 Well-Known Member

    Messages:
    912
    Likes Received:
    6
    Best Answers:
    1
    Trophy Points:
    140
    Digital Goods:
    1
    #3
    The links change color when you hover on them, they used to appear light blue, I changed the hex code to navy blue and now they show green. I checked the hex code on other plain HTML files and it worked fine.

    The reason it's so messy with so many times is because I'm copying it over from a layout I made years ago and haven't touched since. I haven't quite cleaned it up yet, but this seems like a simple issue I just can't find the solution.
     
    Pudge1, Jul 6, 2015 IP
  4. billzo

    billzo Well-Known Member

    Messages:
    961
    Likes Received:
    278
    Best Answers:
    15
    Trophy Points:
    113
    #4
    If you use Firefox, you can hit F12 to bring up the Web Developer Tools and see what CSS rules apply to a particular element. Firefox indicates that your hover color including the bottom border color is set on line 1300 of your CSS file. It is set to #055916.

    
    .navbar .nav li a:hover,
    .navbar .nav li.active a {
    background: none;
    color: #055916;
    border-bottom: 2px solid #055916;
    }
    Code (markup):
    Is that what you are talking about? There is no real content on the page so I am guessing.
     
    billzo, Jul 6, 2015 IP