donated earlier today!
here's the code (I've simplified things to try to make it easier):
<div id="brandingArea">
<a href="http://www.edmonton-insurance-quotes.ca/a-quote"><img title="Save hundreds on car insurance with the Discount Checklist" alt="Save all you can on car insurance with our Discount Checklist" src="/img/autoProductButton.gif" style="float: left; padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;"></a>
<div id="getRateQuoteAuto"></div>
</div>
and the corresponding css:
#brandingArea {
float: left;
margin: 0 0 10px;
padding-top: 0px;
padding-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
width: 559px;
}
#getRateQuoteAuto {
background: url("/img/autoProductButton.gif") no-repeat top right scroll transparent;
display: block;
float: left;
height: 130px;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
padding-left: 5px;
padding-right: 5px;
position: relative;
width: 250px;
}
I just don't understand why it shows up in Firefox as even but not in IE...I have a feeling it may have to do with Display: Block but when I change it to inline the background just disappears altogether...