Forum Moderators: not2easy
Any ideas?
It's a standard CSS image-replacement technique. Here's one we prepared earlier:
a.button { display: block;
float: left;
min-width: 12em;
width: auto!important;
width: 12em;
height: 2em;
padding-top: 0.5em;
background: #fff url('/images/image.jpg') no-repeat center center;
text-align: center; } Note: reason why
!important mis-usage is there is just to demonstrate "IE only" rules - if you have a conditional comment, I would put the width: 12em; part in there, and remove the width: auto;, so standards-compliant just have min-width set. Linkable image with text in front :)