Hi,
Could you tell me how do I change the colour of the links on my blog to the colours I want. At the moment they are set up originally to blue and then when you click on the link it changes to purple. I would like to change these to 2 different colours.
Could you help?
Thanks
Friday, August 19, 2005
Subscribe to:
Post Comments (Atom)
2 comments:
What blooging tool are you using? Blogger? Movable Type?
Hi Dreska,
If I'm not mistaken, you're using Blogger. The colors and fonts in Blogger's templates are controlled by CSS declarations at the top of your template.
Currently your template (stylesheet) has these declarations for links:
a:link {
color:#58a;
text-decoration:none;
}
a:visited {
color:#969;
text-decoration:none;
}
a:hover {
color:#c60;
text-decoration:underline;
}
These need to be modified if you want to change the layout/behaviour of your links, e.g. when hovering over them etc.
Hope this helps :)
Post a Comment