WP-Brown Theme Broken in IE
-
I just downloaded and installed the WP-Brown 1.3 theme and really like it. However, the background of the main cell doesn’t display correctly in IE. It works fine in Firefox. Even the sample site doesn’t display correctly in IE. You can see the preview site here:
https://wp-themes.com/wp-brown/
Has anyone else worked on this theme and come up with a fix? I’m sure it’s a real simple tweak, but I can’t figure it out. If you look at my site – trekwith.us – you can see that the background displays halfway down the page. It’s almost as though the right nav is controlling the background because the background displays just below the last of the widgets.
This is the background css:
.content { background: #ffffff url(images/sidebarbg.jpg) repeat-y right; }
.leftcontent { width: 550px; margin: 25px; float: left; }
.rightcontent { float: left; width: 350px; }The display is controlled here:
<?php get_header(); ?>
<div class=”content”>
<div class=”leftcontent”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”article”>
<h2>” title=”<?php the_title(); ?>”><?php the_title(); ?></h2>
<div class=”postcontent”>
<?php the_content(‘Read the rest…’); ?>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>Help!
- The topic ‘WP-Brown Theme Broken in IE’ is closed to new replies.