I've created a load of rollover buttons using
css so when the link is rolled over, the background-position is changed making the background image of the link move over (to its over state). This works fine in most browsers and does actually work in ie.
However, the problem is that when you roll over the link, the containing area is enlarged for some reason. Can anyone explain why this is happening. Check out the page at
http://www.i4cevents.com/new/pages/results.htm
and try rolling over the main buttons along the left hand box.
The
css for that is simply
.resultIcons a:hover{
background-position:-71px 0;
color:#545454;
text-decoration:none;
}
I'm pretty sure the changing of background position is the reason for the weird content area enlargement, because when I take out the background-position line, the problem doesn't occur (of course, the images don't change either).
Any help, VERY much appreciated. Regards.
Also, I know about the horrible looking
PNG's and I'm working on that. ONE THING AT A TIME!