Click to See Complete Forum and Search --> : picture link question


ukemike
09-18-2003, 11:41 AM
how do i turn the border off on an image that is made to a link

thanx
mike

Khalid Ali
09-18-2003, 12:03 PM
2 things to do.

1. first set the anchor tag to have no underlines

<a href="" style="text-decoration:none;">

second make image to have no border
<img src="" style="border:0px;">

pyro
09-18-2003, 12:09 PM
You might also want to just turn off the border for all images at once:

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