Click to See Complete Forum and Search --> : Probably a stupid question...
bsktbllte127
03-03-2003, 06:27 PM
Okay, I am trying to make this graphic i made a link, but i can't get the ugly blue box lining around it to disappear! It's going to be a simple code i know, but will someone please tell me how to??? thanks a billion.
-Diana Q
dabush
03-03-2003, 06:38 PM
"No such thing as stupid questions...just stupid people." Sorry, I was just kidding about that. But I do have an answer to your question. Put the border=0 in there.
<a href="link"><img src="location" border=0></a>
obviously, dont literaly type "link" and "location".
bsktbllte127
03-03-2003, 06:53 PM
Thank you so very much, one day my website will look decent. I promise.
-Diana Q
Stefan
03-04-2003, 03:13 AM
This is another way that is a bit more effective, since it removes the broder on all linkimages on your page at once
<style type="text/css">
a img {border:0;}
</style>
</head>
<body>
...
<a href=""><img></a>