Need help with Links list colour

Mar 19, 2010 15:20

I am extremely CSS challenged and I would be very grateful if anyone could tell me how to change the colours of my LINKS. Or, at least, the colour of all the links in my side-bar.
Right now, they appear in grey like all links and I would like to make the sidebar links more visible.
Does anybody knows the code to add in the custom stylesheet ?

Leave a comment

Comments 2

inspired_ideas March 20 2010, 22:42:58 UTC
Sure! To change all the links, you can set the colors by adding this (replace #CC0000 with whatever color you'd like):

a:link { color: #CC0000; }
a:visited { color: #CC0000; }
a:active { color: #CC0000; }
a:hover { color: #CC0000; }

If you want to change your side bar, use this (replace #CC0000 with whatever color you'd like):

li.module-list-item a { color: #CC0000; }

Reply

natila March 20 2010, 23:43:17 UTC
It worked !!! XDDD thank you so much, I LOVE YOU ! ;)

Reply


Leave a comment

Up