This:
Code:
<div id="simplegallery1"></div>
Technically doesn't exist because it is outside the structure of the table:
Code:
<tr>
<div id="simplegallery1"></div>
</tr>
See? there is no td, just a tr. Other browsers are error correcting this for you.
So you need to make that:
Code:
<tr>
<td><div id="simplegallery1"></div></td>
</tr>
But then it won't be centered, so you need to make that:
Code:
<tr>
<td><div id="simplegallery1" style="margin:0 auto;"></div></td>
</tr>
But that still won't center it in IE, so you also need to change the DOCTYPE (first thing at the top of the page's source code) from:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
to:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
In an unrelated matter, you have an unclosed a tag here:
Code:
<td><a href="/contact-us.php"><b>TSA Architects, pllc</b></td>
It should be:
Code:
<td><a href="/contact-us.php"><b>TSA Architects, pllc</b></a></td>
This (unless corrected) may or may not cause other problems.
Bookmarks