PDA

View Full Version : Image link border


Fraki
9-4-03, 04:11 PM
How do I get rid of the little dotted line that shows up around my image links when someone clicks on them? I've seen it done before but can't remember how to do it...

macmankev
9-4-03, 07:33 PM
I think this should do the trick. Someone correct me if i'm wrong.
<img src="Image URL" alt="" border="0">

(jj)
9-4-03, 08:07 PM
If you mean the border that shows up when you've clicked on the link then you would put this inside your anchor <href> tag

onfocus="this.blur()"

Fraki
9-5-03, 02:21 PM
Originally posted by (jj)
If you mean the border that shows up when you've clicked on the link then you would put this inside your anchor <href> tag

onfocus="this.blur()"

exactly wut i was looking for, thanks!