Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Create custom clicked-link outlines in Safari' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Create custom clicked-link outlines in Safari
Authored by: luhmann on Feb 18, '04 06:18:39PM
This seems to work for me. It turns out I had to quit and relaunch Safari to get it to work:
:link, :visited { text-decoration: none }
:link { text-decoration: none }
:link:hover, :visited:hover { outline: 3px auto; color: lightblue; }
:link:active, :visited:active { outline: 3px auto; color: lightblue; }


[ Reply to This | # ]
Create custom clicked-link outlines in Safari
Authored by: stewby on Feb 19, '04 01:21:11AM

I had taken the color specification out of my example; sorry about that. I also noticed that I had to quit and re-launch, but other than that my CSS should work fine.

If you don't ever want the underlines, it's best to put in the ! important as in my example; that ensures that you'll get text-decoration: none even if they specifically set a text-decoration for :hover using a higher-precedence selector than a simple catch-all :hover



[ Reply to This | # ]