Not signed in (Sign In)

SkillShare - A place to discuss Web Standards and Web Design topics

Categories

Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorilsott
    • CommentTimeApr 13th 2006 edited
     permalink
    I've spent about 3 hours trying to find the solution to this, but I can't find a way to turn off the a:active, a:visited blue border for IE/MacIE5. I've always hated that thing and am doing a design on a black background where it looks particularly bad.

    I've narrowed it down to what I think is a bug specific to Mac IE5, but I can't be entirely certain about that.

    Anything like
    <img src="yaddayadda" border="0" />
    a img {border: 0px}
    a:active {border: none;}
    etc...

    has yet to work for me.
  1.  permalink
    I can't be certain since IE 5 hasn't been a target browser for most of the websites I've developed (thank goodness). I generally place the following bit of code in my global style sheet to turn of the blue border on linked images:

    a img {
    border: none;
    }

    Evidently, this doesn't work for IE5 MAC?
    •  
      CommentAuthornifkin
    • CommentTimeApr 13th 2006 edited
     permalink
    oh wait, you mean the blue border that shows up when you click on a link? that's the focus() state for the browser itself. the only way to get rid of it is with javascript.

    &lt;a href="foo" onfocus="this.blur();"&gt;&lt;img src="foo.gif" alt="FOO!" /&gt;&lt;/a&gt;

    If you're thinking of actually doing that though you will be causing some SERIOUS trouble in terms of accessibility, though. (It efffectively kills the ability to navigate the page using tab between links and thus makes using a screenreader to navigate yr site impossible.)

    My $.02: I wouldn't even worry about it in IE/Mac, it hasn't been updated in, what, 5 years? Even microsoft won't let people download it any more because it's so old they don't want people using it.
    • CommentAuthorilsott
    • CommentTimeApr 13th 2006
     permalink
    Ho hum.
    I guess I'll just stick with

    a img {
    border: none;
    }

    and be done with it. Thanks for the help.
  2.  permalink
    Nifkin said:
    My $.02: I wouldn't even worry about it in IE/Mac, it hasn't been updated in, what, 5 years? Even microsoft won't let people download it any more because it's so old they don't want people using it.

    I whole-heartedly agree.

    Unless, of course your website is targeted primarily toward MAC/IE users.
    •  
      CommentAuthorOscar
    • CommentTimeApr 18th 2006
     permalink
    Agreed - Even MS has given up on it...

    Ever tried using percentage widths in IE5 for Mac? :-"
Add your comments
    Username Password
  • Format comments as (Help)