Changing the color of hrefs
Posted: Mon Jun 07, 2010 9:52 pm
I tried to find this by searching the past questions, but couldn't. I need to change the color of a displayed link without affecting the color of others. The main URL is http://www.mybfl.com. In the sidebar, we want the links to be displayed in white, rather than the default blue. We also want the visited links displayed in white. So we have the following code:
That part works fine. However, in the body, where we have code such as:
both the "<a href=..." links is also displayed in white. The body is a light yellow background and the links in white disappear into the background. We have tried a lot of variations such as class, font, etc. to make these links displayed in blue. Is there a way to do that?
Thanks
Code: Select all
<style type="text/css" media="screen">
A:link { color: white; }
A:visited { color: white; }
A:hover { color: white; background-color: gray; text-decoration: #000000;}
A:active { color: white; }
</style>
Code: Select all
<td width="239" align='right' border="0"><fieldset class="fieldsetaddressbox"><center><h3><u>North Point Mall:<br></b></u>
</h3><Font size="+1">
Monday - Saturday<br>
10 am - 9 pm<br></font>
<font size="-1">935 North Point Drive
<br />Alpharetta, GA 30022<br>
(770) 475-7768<br>
<a href="mailto:NorthPoint@mybfl.com">NorthPoint@mybfl.com</a></font>
</center>
<center><p>
<a href="http://maps.google.com/maps?f=q&source=embed&hl=en&geocode=&q=935+North+Point+Drive+Alpharetta,+GA+30022&sll=34.051474,-84.282392&sspn=0.034488,0.077162&ie=UTF8&hq=&hnear=935+North+Point+Drive+Alpharetta,+GA+30022&ll=34.051474,-84.282392&spn=0.019601,0.025663&z=14&output=embed&iwloc=near" style="text-decoration:none"><u>Click for Map</u> <img src="images/scroll_icon.gif" width="30" height="30" border="0" align="absbottom"/></a>
</p></center></fieldset>
</td>
Thanks