PDA

View Full Version : text decoration


craig
07-21-2002, 10:29 PM
Can you tell me how to eliminate that doted line around an image link in IE. Tried text decoration.
www.proamrodeo.com

Gordo
07-21-2002, 11:22 PM
Read this thread...it has several options.

http://www.codingforums.com/showthread.php?s=&threadid=1801&highlight=dotted

Quiet Storm
07-21-2002, 11:25 PM
Or you could just use this:



<BODY onLoad="blurLinks();">

...all your content here...


<script language="javascript">
<!--//
function blurLinks() {
if(document.links) {
for(i=0;i<document.links.length;i++) {
document.links[i].onfocus=function(){this.blur();}}}}
document.onmousedown=blurLinks
//-->
</script>

</BODY></HTML>