Forum Moderators: not2easy
I've decided to mess around with using the CSS position element to lay out a page instead of using tables for everything, and ran into an odd bug.
When I make a class wherein I position a link, the link move with the element, but leaves a link in empty space where the element was originally. IE doesn't leave the artifact behind, is this something I'm doing incorrectly, or a bug in FF?
INFO:
The link is an image
here's the class I made:
.navImageTop{
text-align: center; /*Fix for IE7*/
position: relative;
bottom: 65px;
border: none;
}
It also may be worth noting that, at the moment at least, the navigation images are inside a table, and the ghost link is appearing inside the original cell where the image starts.
Any help?