View Full Version : css help yet again


randomjon
02-21-2005, 01:06 AM
yet again. i have a css problem with my links on the righthand side. when i my mouse over the link it moves an inch from its original location.

heres the CSS:
body A:hover { font-family: "Times New Roman", Times, serif; font-size: 10pt; font-style: normal; font-weight: normal; color: #fffccc; text-decoration: none; filter: blur; height:2;}


this is the Link (http://www.randomjon.com)

thanks -jon :buckt:

Rosey
02-21-2005, 04:39 AM
the reason it's doing that is because of your p indent. If you want to keep that in there, take the <p> tags off from around your links and use br tags. If you want to keep your links in the p tags, set a margin instead of indent for your p tags.


also, it's not body A { whatever....}

it's just a:link { attributes here }
and

a:hover {attributes here}