Change Link Color

Viewing 3 posts - 1 through 3 (of 3 total)
  • #2661
    OpX
    Participant

    How can I change the color of links(the ones from the ‘Pages’ menu on the right side of a page/post) from that blue to white?

    #2662
    Daniel Tara
    Keymaster

    Define e CSS rule #sidebar .wiget a and set the color attribute you want for it. like this:

    #sidebar .wiget a {
    color:#FFF;
    }
    #2663
    OpX
    Participant

    That didn’t do anything. For those who actually need this change you have to edit styles.css and change this [code]a:link,
    a:visited {
    color:#21759B;
    text-decoration:none;
    }[/code] to this [code]a:link,
    a:visited {
    color:#FFF;
    text-decoration:none;
    }[/code]
    Fluent English doesn’t seem to matter :/

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

You must be logged in to reply to this topic.