Web Hosting Talk







View Full Version : Image w/ link has color border? Why?


taltos1
09-23-2003, 02:24 PM
Hello,
I am using a template and when I added images that are linked they get the ugly blue border around them showing that they are a link. I cannot figure out how to get rid of this. I tried a inline?? CSS as follows:

<style type="text/css">
<!--
a {
color: #FFFFFF;
}
-->
</style>


but it only changed the text link color and not the image border?Any help would be great thanks!

Loon
09-23-2003, 02:30 PM
You need to add border="0" inside your img tag

epolady
09-23-2003, 02:35 PM
Or you can do

img{
border: 0;
}

that would make all images border-less unless you directly apply CSS to it.

taltos1
09-23-2003, 02:37 PM
Got it, Thanks a lot