Logged Out
Create an Account
Login:
Password:

Forgot your password?
Remove Link Color on an Image?

Remove Link Color on an Image?
[Back to Index]
Thread Tags
Primary: [Advanced Layout]
Secondary: None

Is there a way to remove the hyperlink color on an image with an a href? Here is the code I'm using

<td>
<div style="width: 167px; margin-bottom:5px;">
<a href="http://fusion.dkpsystem.com/news.php" OnMouseOver="document.Home.src='http://dkpfiles.com/fusion/files/button1over.png';" OnMouseOut="document.Home.src='http://dkpfiles.com/fusion/files/button1up.png';">
<img src="http://dkpfiles.com/fusion/files/button1up.png" name="Home">
</a>
</div>
</td>

The images are showing a blue box around the image if not visited and purple after visited. I want to remove those entirely. Any help is appreciated.
This is the exact code I used to remove those borders from the image on our splash screen. I believe it's just the "border=0" that removes it. I must say that I did try various other solutions to remove it before trying this, and it drove me crazy when nothing worked. I hope this helps.

<center><a href="http://archonsofluden.dkpsystem.com/news.php"><img src="http://dkpfiles.com/archonsofluden/files/Storm5.jpg" border=0></a></center>


--
Ieyasu - Organizer, Ex Cineribus
Yup. Nitesbane is correct. Add border=0 to the the <img> tag.


--
It's all in the reflexes.
DOH! I tried so many different things I didn't even think about the border! lol

Thanks guys


[Back to Index]