Hey Ofstead,
I must confess that I'm not spotting the error using Firefox 3 or IE7.
I do see that there are some validation errors on your site and I'd encourage you to fix these as they can have an effect on how the site displays in different browsers.
For example, you have this code for your nav:
<div id="primary_nav">
<li><a href="/index.htm">Home</a></li>
<li><a href="/company.htm">About Ofstead</a></li>
<li><a href="/portfolio.htm">Portfolio</a></li>
<li><a href="/news.htm">News & Events</a></li>
<li class="active"><a href="/blog">Blog</a></li>
<li><a href="/contact.htm">Contact Us</a></li>
</div>
Your list should be wrapped in
tags to avoid a bunch of errors like so:
<div id="primary_nav">
<ul>
<li><a href="/index.htm">Home</a></li>
<li><a href="/company.htm">About Ofstead</a></li>
<li><a href="/portfolio.htm">Portfolio</a></li>
<li><a href="/news.htm">News & Events</a></li>
<li class="active"><a href="/blog">Blog</a></li>
<li><a href="/contact.htm">Contact Us</a></li>
</ul>
</div>
Can you give us more details?