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?
Define e CSS rule #sidebar .wiget a and set the color attribute you want for it. like this:
#sidebar .wiget a {
color:#FFF;
}
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 :/