Question:
I want to change my hyperlink colour to blue?
Helen Gates
2007-11-24 17:10:40 UTC
I'm trying to enter hyperlinks into my webpage, but it keeps showing as yellow. I want my default hyperlink colour to blue. How do I change the default colour in my computer system to blue.

Thanks again,

Helen
Three answers:
anonymous
2007-11-24 17:22:35 UTC
Assuming you are doing this on a Web page, add the following style code block to the HEAD section of your Web page:



none
2007-11-25 01:14:54 UTC
simply change the property of the hyperlink...I think the syntax would go something like this: alink = blue--where alink means active link
eleven82_com
2007-11-25 01:52:16 UTC


a:link {

color:#9DEBFC;

text-decoration:none;

}





a:visited {

color:#9DEBFC;

text-decoration:none;

}





a:hover {

color:#ffffff;

text-decoration:underline;

}





a:active {

color:#ffffff;

text-decoration:underline;

}



These colors are from my site and is to give you an idea of how to set it up. The links in this case will not have a line underneath on link and visit, but will on roll over and active.


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...