View Full Version : unwanted color frame around pictures


kittyuk
09-24-2003, 11:57 AM
I am trying to remove the colored border that appears around picture links put into the reply box in a forum
I type this into the header but it isn't working for me.
<body link="#FFFFFF">
If I put </a> the border goes, but the message can't be replied to as the link goes too!

MaGiCSuN
09-24-2003, 01:48 PM
a link should always be closed with an </a>

to get rid of the border around linked pictures you have to put border="0" in the <img> tag or this between your <head> and </head>

<style type="text/css">
<!--
img { border: 0px; }
-->
</style>

Love,
Mirna

kittyuk
09-24-2003, 02:16 PM
That is perfect, thank you =0)