That doesn't have anything to do with the anchor tag. The images that don't show up have the class value p_button. The image that does show up doesn't have that class. The exact piece of code that is causing your images to move off the page in IE is this:
Code:
td img.p_button {
display:block;
background:url(../images/purchase_btn.jpg) no-repeat;
height:28px;
width:140px;
margin:-33px 0 0 22px;
cursor:pointer;
}
Consider doing whatever that is doing in another way. The best thing would be not to use tables.
Good luck!
Bookmarks