Link Colors in Menu & Header

Viewing 2 posts - 1 through 2 (of 2 total)
  • #3141
    testuserfay
    Participant

    How do I change the link colors for the header link and the menu links at the bottom of the page? I am using a dark colored background image that makes the default black hard to read.

    Thank you!

    #3142
    dwelby101
    Participant

    Them attributes are usually editable in the style.css file

    for example:

    a:link,
    a:visited {
    color:#ffffff;
    text-decoration:none;
    }

    a:hover,
    a:active {
    color:#ff9933;
    text-decoration:underline;
    }

    the above code defines the color of link text before(top) it has been clicked and (bottom) when the mouse hovers over it.
    This code was found in style.css

    Hope that helps! πŸ™‚

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.