View Single Post
Old October 27th, 2006, 1:56 PM   #2 (permalink)
H
after g, before i
Resident.
 
H's Avatar
 
Joined in Jul 2004
Lives in N,BC,CA
8,124 posts
Gave thanks: 49
Thanked 132 times
I see this on occasion. It's the problem with using images for links and trying to confine them... The fix is simple.

In your CSS you have the image selector (img { ..})... Just add display: block;

Code:
img {
	border-left: 0px dotted #FFFFFF;
	border-right: 0px dotted #FFFFFF;
	border-top: 0px dotted #FFFFFF;
	border-bottom: 0px dotted #FFFFFF;
	text-decoration: none;
	background-color: #FFFFFF;
	display: block;
}
That should resolve it.
H is offline   Reply With Quote
This user thanks H for this great post!
Kayla (October 27th, 2006)