Hi there. When I put my cursor over the link it's the same color as the text. But I want people to notice the link. How do I change the link into a bright red color?
I want the 'Anime Alive Forum' to be a red color.
For all anime lovers, register in the %26lt;a href=%26quot;http://z8.invisionfree.com/Anime_A?Alive Forum%26lt;/a%26gt;
Thank you!~ n_nHow do I change the color of a link?When designing web pages, there may be times when you would like to change the standard hyperlink color to a color that will match your web site design. Although it is always best to leave your link colors at their default settings, as this is what your visitors are used to, the following html tip will assist you in changing your link color.
%26lt;BODY TEXT=%26quot;black%26quot; BGCOLOR=%26quot;white%26quot; LINK=%26quot;blue%26quot; VLINK=%26quot;purple%26quot;
ALINK=%26quot;red%26quot;%26gt;
The ALINK attribute Specifies the color of the active links in the document. Deprecated. Use styles instead.
VLINK Specifies the color of the visited links in the document. Deprecated. Use styles instead.
And the LINK Specifies the color of all the links in the document. Deprecated. Use styles instead.How do I change the color of a link?%26lt;style%26gt;
a:link, a:visited { color: #ff0000; text-decoration: none; }
a:hover { color: #ff00ff; text-decoration: none; }
%26lt;/style%26gt;How do I change the color of a link?I agree with Robert S.