Sidebar moved in IE only
-
As usual, firefox is great but IE is only causing problems. I changed hosts today which involved moving all my content as well as my database. I think I have most everything in order except for the sidebar in IE. For some reason the sidebar starts below the entries on the page. Does anyone have any ideas?
The site is at https://www.diyhappy.com
Here is the code from the sidebar, which is unmodified from the equiX theme. If it would be helpful, I will post my main page code as well.
<div class=”sidebar”>
- <!– Activity –>
<h2><?php _e(‘Activity’); ?></h2>
<!–This will show the last 10 posts, including the last one. To change the number of post shown
edit the ‘nuberposts=x’ to whatever value you want, and to skip the last one (or last 2, 3, etc.)
increase the value of ‘offset=x’ (default is “0” so it will start by the last post)–>
- <?php
- ” title=”<?php the_title() ?>”><?php the_title() ?>
$posts = get_posts(‘numberposts=10&offset=0’);
foreach ($posts as $post) :
?><?php
endforeach;
?><!– End of Activity –>
- <!– Categories –>
<h2><?php _e(‘Categories’); ?></h2>
-
<?php list_cats(0, ”, ‘name’, ‘asc’, ”, 1, 0, 1, 1, 1, 1, 0,”,”,”,”,”) ?>
<!– End of Categories –>
- <!– Archives –>
<h2><?php _e(‘Archives’); ?></h2>
-
<?php wp_get_archives(‘type=monthly’); ?>
<!– End of Archives –>
- <h2><?php _e(‘Site Content’); ?></h2>
-
<?php wp_list_pages(‘title_li=’); ?>
<?php if ( is_home() || is_page() ) { ?>
<?php if (function_exists(‘wp_theme_switcher’)) { ?>- <!– Theme switcher –>
<h2><?php _e(‘Themes’); ?></h2>
<?php wp_theme_switcher(); ?> - <!– Links –>
<h2><?php _e(‘Interesting Links’); ?></h2>
<!– End of Theme switcher –>
<?php } ?>-
<?php get_links(-1, ‘
- ‘, ‘
‘, ”, TRUE, ‘url’, FALSE); ?>
<!– End of Links –>
- <!– Feeds –>
<h2><?php _e(‘Feeds’); ?></h2>
- ” title=”RDF/RSS 1.0 Feed”>RDF/RSS 1.0
- ” title=”RSS 0.92 Feed”>RSS 0.92
- ” title=”RSS 2.0 feed”>RSS 2.0
- ” title=”Atom feed”>Atom
- ” title=”Comments RSS 2.0 Feed”>Comments [RSS 2.0]
<!– End of Feeds–>
- <!– Meta –>
<h2><?php _e(‘Meta’); ?></h2>
-
<?php wp_register(); ?>
- <?php wp_loginout(); ?>
- Valid XHTML
- XFN
- WordPress
<?php wp_meta(); ?>
<!– End of Meta –>
<?php } ?></div>
- <!– Activity –>
- The topic ‘Sidebar moved in IE only’ is closed to new replies.