Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > removing linked image borders in IE5/Mac?

Reply
Thread Tools

removing linked image borders in IE5/Mac?

 
 
Christopher Scott
Guest
Posts: n/a
 
      07-26-2004
Anybody know how I can eliminate the ugly-looking border that appears
around hyperlinked images in IE5/Mac?

I realize that the browser has been discontined but I presume that many
are still using it, so I'd like tosolve this issue if possible...
 
Reply With Quote
 
 
 
 
Karl Groves
Guest
Posts: n/a
 
      07-26-2004

"Christopher Scott" <> wrote in message
news:250720042207585846%chrisjscott@NOSPAMmindspri ng.com...
> Anybody know how I can eliminate the ugly-looking border that appears
> around hyperlinked images in IE5/Mac?
>
> I realize that the browser has been discontined but I presume that many
> are still using it, so I'd like tosolve this issue if possible...


Surprise!
Look at the first result of a well-formed query to Google!
http://www.google.com/search?q=remov...d+image+border

-Karl


 
Reply With Quote
 
 
 
 
Sid Ismail
Guest
Posts: n/a
 
      07-26-2004
On Mon, 26 Jul 2004 02:07:58 GMT, Christopher Scott
<> wrote:

: Anybody know how I can eliminate the ugly-looking border that appears
: around hyperlinked images in IE5/Mac?


If you remove it, how will the user know its a link?

Sid

 
Reply With Quote
 
Sam Hughes
Guest
Posts: n/a
 
      07-26-2004
On Mon, 26 Jul 2004 02:07:58 GMT, Christopher Scott
<> wrote:

> Anybody know how I can eliminate the ugly-looking border that appears
> around hyperlinked images in IE5/Mac?
>
> I realize that the browser has been discontined but I presume that many
> are still using it, so I'd like tosolve this issue if possible...


This happens in other browsers too.

My suggested way is to use CSS in your head element:

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

You could also use the deprecated method, by going through every IMG tag
and adding the attribute border="0".

--
Accessible web designs go easily unnoticed;
the others are remembered and avoided forever.
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Linked list, New try (was:Linked list, no out put,help) fool C Programming 14 07-03-2006 12:29 AM
Tables with different color left and right borders, no top or bottom borders, etc. George HTML 9 10-25-2004 04:25 PM
Generating a char* from a linked list of linked lists Chris Ritchey C++ 7 07-10-2003 10:12 PM
Generating a char* from a linked list of linked lists Chris Ritchey C Programming 7 07-10-2003 10:12 PM
Removing borders around active links vbAlex Javascript 2 07-02-2003 07:21 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57