Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: IE Display Problem


chrishajer
Participant

@chrishajer

Also, while looking at this, overflow-x in the style.css is not valid. It’s an IE specific extension. I moved that line overflow-x: hidden; from #front-page #hottags in the style.css to an IE conditional in header.php like this:

<!--[if IE 6]>

<style type="text/css">

#front-page #hottags { overflow-x: hidden; }

</style>

<![endif]-->

That code was placed right after this:

<link rel="stylesheet" href="<?php bb_stylesheet_uri( 'rtl' ); ?>" type="text/css" />

<?php endif; ?>

CSS validates now, and everything appears to still work for IE and FF.

Skip to toolbar