View Full Version : links on mouseover


The master
12-20-2006, 11:25 PM
For some reason, links on one of my sites are not working properly. If you go to the links page on http://www.freewebs.com/biblebc/ ( or http://www.freewebs.com/biblebc/links.html ) the links will appear blue and underlined if someone hasn't accessed the sites. I don't want that effect. I set-up my code having a red link and no underline...and yet the links show up blue and underlined. Anyone know what is wrong? My css code for links is below:

A:link { text-decoration: none; color:#BD4747; }
A:visited { text-decoration: none; color:#BD4747; }
A:hover { text-decoration: underline; color:#000000; }

bourdelson
12-21-2006, 12:36 AM
In your external style sheet, remove the <style type="text/css"> and </style> tags. Because you're linking to your style sheet, those tags are unnecessary. That might do the trick-- I can't see why else they wouldn't work.

The master
12-21-2006, 01:35 AM
ahhhh i knew it was something i overlooked. I forgot to remove those tags, thanks a million bourdelson.

bourdelson
12-22-2006, 02:40 AM
Not a problem. :)