• Resolved dwqonline

    (@dwqonline)


    If you go to my site https://www.dwqonline.com you will notice I have taken the X-Mark theme and started turning it Green. HOwever, if you go to my sidebar (archives, categories, meta), you will notice that if you scroll over the green link that it is then highlighted in a red box. I have searched my CSS all night to see where that color is so I can change it to a different color green. I can’t find it.

    Can someone help or at least tell me where to look or what it might be called? Even the color ID so I can search would work.

Viewing 2 replies - 1 through 2 (of 2 total)
  • delete

    (@moonbatwingnut)

    That’s a hover color attribute, I think. If you run Firefox and install an add-on called Firebug, it will show you exactly where each CSS command is affecting the HTML output.

    Here is one place in your CSS using that color:

    #navSquare a:hover
    {
    color:#900101;
    text-decoration:none
    }

    Or here:

    #lside2 ul ul li a:hover,#rside ul ul li a:hover

    {
    color:#fff;
    background:#8a0202;
    text-decoration:none
    }

    A handy place to check colors: https://html-color-codes.info/

    Thread Starter dwqonline

    (@dwqonline)

    Thank you so much. I fixed it. you are fantastic.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘I need help’ is closed to new replies.