IE8 Moves Sidebar to Footer
-
While all browsers work on my site, IE8 refuses to. The main problem is the sidebar, which I see is moved towards the bottom (the footer). If you take a look carefully though, you’ll see the sidebar looks as if it’s too big for the main wrapper, but that’s nonsense.
Sometimes in Firefox this would happen, but by recoding the widgets in my sidebar I resolved the issue permanently; same goes for Chrome and Safari.
I am wondering if I should create a new PHP file for IE8, and if anyone could give me an example to start. I use the iBlog2 theme, and my site is laptopmemo.com
Another strange thing is that it used to work perfectly, but not it’s corrupted. Also, it looks like people can move my widgets on their computer, but it is just stored in their cache.Here is my sidebar.php file for your reference:
<div class=”dbx-group” id=”sidebar”>
<div id=”cred”>
“>Professional WordPress Themes by PageLines
</div>
<?php if(get_option(‘plallow’) && get_option(‘pp_welcomemessage’)):?>
<div class=”welcome”>
<?php echo get_option(‘pp_welcomemessage’); ?>
</div>
<?php endif;?>
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar() ) : ?><!–sidebox start –>
<div id=”categories” class=”dbx-box”>
<h3 class=”dbx-handle”><?php _e(‘Categories’); ?></h3>
<div class=”dbx-content”>-
<?php wp_list_cats(‘sort_column=name&optioncount=1&hierarchical=0’); ?>
</div>
</div>
<!–sidebox end –><!–sidebox start –>
<div id=”categories” class=”dbx-box”>
<h3 class=”dbx-handle”><?php _e(‘Tag Cloud’); ?></h3>
<div class=”dbx-content”>-
<?php wp_tag_cloud(‘smallest=8&largest=17&number=30’); ?>
</div>
</div>
<!–sidebox end –><!–sidebox start –>
<div id=”archives” class=”dbx-box”>
<h3 class=”dbx-handle”><?php _e(‘Archives’); ?></h3>
<div class=”dbx-content”>-
<?php wp_get_archives(‘type=monthly’); ?>
</div>
</div>
<!–sidebox end –><!–sidebox start –>
<div id=”links” class=”dbx-box”>
<h3 class=”dbx-handle”><?php _e(‘Links’); ?></h3>
<div class=”dbx-content”>-
<?php get_links(‘-1’, ‘
- ‘, ‘
‘, ”, FALSE, ‘id’, FALSE, FALSE, -1, FALSE); ?>
</div>
</div>
<!–sidebox end –><!–sidebox start –>
<div id=”meta” class=”dbx-box”>
<h3 class=”dbx-handle”>Meta</h3>
<div class=”dbx-content”>-
<?php wp_register(); ?>
<li class=”login”><?php wp_loginout(); ?>
<?php wp_meta(); ?>
<li class=”rss”>“>Entries (RSS)
<li class=”rss”>“>Comments (RSS)
<li class=”wordpress”>WordPress</div>
</div>
<!–sidebox end –><?php endif; ?>
<div style=”clear:both”></div>
</div><!–/sidebar –>
- The topic ‘IE8 Moves Sidebar to Footer’ is closed to new replies.