Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

memco

macrumors 6502
May 1, 2008
259
2
If you post the code I might be able to help better. because the images are hyperlinks you can do this:

Code:
div#id1 a {
 background : url('image/for/leftmost-colum.jpg');
 width : width-of-image;
 height : height-of-image;
 text-indent : -9999em;
}

div#id1 a:hover {
 background : url('rollover-mage/for/leftmost-colum.jpg');
}

Then, your code would look like this:

HTML:
<div id="id1">
 <a href="link1">Link</a>
</div>

Read these two articles for an explanation of how you can optimize this technique:

http://www.alistapart.com/articles/hybrid/

http://www.alistapart.com/articles/sprites/
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.