views:

327

answers:

1

Check out this page in Firefox or Chrome:

http://minorityrecruitonline-com.si-vs1222.com/college/Default1.aspx

Now check out the same page in IE8. I have tried everything to get them to appear the same in both browsers, but no can do.

Any ideas from any HTML gurus out there?

+1  A: 

In the td that has the "provena" add image in it - you don't have a valign attribute. Set that to valign="top" and you should be all set.

change:

<td width="224" height="364" style="background: url(/college/templates/College_Home/images/bg-ad-v.jpg) #ffffff no-repeat;" rowSpan="2">

to:

<td width="224" height="364" style="background: url(/college/templates/College_Home/images/bg-ad-v.jpg) #ffffff no-repeat;" rowSpan="2" valign="top">

I used IE8 Developer Tools to verify this works.

free-dom