change link colors/same page

windows

Guest
Can I change my link colors in the same page? The content area of the webpage is almost white with black text. But the background is a dark charcoal gray with white text for the title and footnote. I want to use a link in the footnote, but dark blue doesn't show up. Can I change this link to white, but leave the other links in the main content area normal?<br />
<br />
Kevin Thomas<!--content-->You just need to use the following code around the link:<br />
<br />
<font color="#FFFFFF"><br />
<a href=http://www.htmlforums.com/archive/index.php/"blah.html">Blah</a><br />
</font><br />
<br />
Obviously you can replace the color with whatever you want.<!--content-->Just use this:<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"link.html"><font color="white">Link</font></a><br />
<br />
Replace white with whatever color you want.<!--content-->Goldilocks got there a few seconds before me!<!--content-->I thought I had already tried that, but I must have messed it up. It works fine now. <br />
<br />
Thanks again,<br />
Kevin<!--content-->Of course you can change the link color like Goldilocks and (a little late but better than never) Dave have suggested.<br />
<br />
But the problem is it will be white and only white (or whatever color you assign it).<br />
<br />
Use style tags for more versatility. Assign it class so it does not affect all links on the page.<br />
<br />
Example:<br />
<br />
in the head section you can put:<br />
<br />
<head><br />
<STYLE type="text/css"><br />
<!--<br />
a.linkstyle1{color: #FFFFFF; text-decoration: underline; font-size: 10pt; font-family: Arial;}<br />
--><br />
</style><br />
</head><br />
<br />
<br />
then in the page you would put:<br />
<br />
<A class="linkstyle1" href=http://www.htmlforums.com/archive/index.php/"http://www.yahoo.com">Yahoo</a><br><br />
<br />
Regards,<br />
Kevin<!--content-->
 
Back
Top