border around image
in php/css
i dont have the code right now because my server down but it bassicly goes like this
<a href="www.sociophyte.com"> <img src="images/logo.jpg"></a>
this works perfectly but since i made the image a link it automatically puts a border around the image and i cant remember the code to take it off.
I think this is the best solution. It is W3C compliant (not deprecated) and compact.
markup<img src="image.jpg" border="0" />
You could also use CSS: it will be convenient if you are including several images and you don't want to repeat the border="0" attribute for every picture.
markupimg {border: 0px;}
mikispag wrote: I think this is the best solution. It is W3C compliant (not deprecated) and compact.
markup<img src="image.jpg" border="0" />
You could also use CSS: it will be convenient if you are including several images and you don't want to repeat the border="0" attribute for every picture.
markupimg {border: 0px;}
That's been posted many many many times already….was that really necessary?…..:p