TEXT COLOR….

Viewing 4 posts - 1 through 4 (of 4 total)
  • #5652
    angel
    Participant

    HI,
    HELP I CAN NOT CHANGE THE COLOR OF TEXT AND TAGS … HOW DO I?
    THANKS

    #5815
    yogasanjay
    Participant

    I need an answer to this too!

    #5821
    gavintfn
    Participant

    log into Wp Dashboard, Hover over appearance, then click on editor…
    You should be taken to “Stylesheet” Or style.css….same thing…

    hit ctrl+F look for :

    .nav ul li a {

    you main color is controlled by this css entry…

    Mine is changed, but heres the whole thing…
    .nav ul li a {
    display: inline-block;
    padding: 5px 0;
    color: #555;
    text-decoration: none;
    font-weight: bold;
    }

    Your gonna want to change the color number…heres a good site, for some.
    http://html-color-codes.com/

    find the color code you want and replace, the color number… you should use the # symbol infront of it…so for example #CCCCCC would be gray.

    if you want to change the color while hovering, change the color in:

    .nav ul li a:hover {
    display:inline-block;
    padding:5px 0;
    color:#c9b69a;
    text-decoration:none;
    font-weight:bold;

    }

    thats it.. Pretty simple..

    #5864
    alewhatsup
    Participant

    Usefull ! Thanks!

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

You must be logged in to reply to this topic.