I have used the theme 'Simply Basic' from the library on this site. I have customized the sidebar to my convience. Now I have a problem I can't fix, which is to my opinion in the CSS code.
In FF the weblog looks fine, but in IE the sidebar doesn't look good. I have not changed the CSS file, so the problem has to be in the sidebar file. In FF everything works fine.
Here's the code of my sidebar.php:
<hr />
<div id="sidebar">
<ul>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Main Sidebar') ) : ?>
<li class="side">
<h2>Over deze weblog</h2>
<div class="textwidget">Je vindt hier foto's van - en teksten over highlights uit ons leven. Je kunt een reactie plaatsen door op de term 'Reacties' te klikken onder een bericht.</div>
</li>
<li class="side">
<h2>Nieuws</h2>
<div class="textwidget">
<script src="http://www.amvanleeuwen.nl/includes/rssticker.js" type="text/javascript"></script>
<div>
<script type="text/javascript">
//rssticker_ajax(RSS_id, cachetime, divId, divClass, delay, optionalswitch)
//1) RSS_id: "Array key of RSS feed in PHP script"
//2) cachetime: Time to cache the feed in minutes (0 for no cache)
//3) divId: "ID of DIV to display ticker in. DIV dynamically created"
//4) divClass: "Class name of this ticker, for styling purposes"
//5) delay: delay between message change, in milliseconds
//6) optionalswitch: "optional arbitrary" string to create additional logic in call back function
new rssticker_ajax("BBC", 1200, "ddbox", "bbcclass", 3500, "")
</script>
</div>
</div>
</li>
<li class="side">
<h2>Recente reacties</h2>
<div class="textwidget"><?php bdp_comments(); ?></div>
</li>
<li class="side">
<h2>Archief</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<li class="side">
<h2>Categoriën</h2>
<ul>
<?php wp_list_cats('sort_column=name&optioncount=0&hierarchical=2'); ?>
</ul>
</li>
<li class="side">
<h2>Contact</h2>
<div class="textwidget">
Marcel en Maaike van Leeuwen<br>
Duifkruid 52<br>
4007 SX Tiel<br>
<br>
Telefoon 0344-63 33 35<br>
Email <a href="mailto:amvanleeuwen@tiscali.nl">info@amvanleeuwen.nl</a>
</div>
</li>
<li class="side widget_text">
<h2>Advertenties</h2>
<script type="text/javascript"><!--
google_ad_client = "pub-6797676715839149";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_type = "text";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0066CC";
google_color_text = "444444";
google_color_url = "0066CC";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</li>
<!--<li class="side widget_meta">
<h2>Meta</h2>
<ul>
<li><a href="<?php echo get_settings('home'); ?>/wp-admin/">Site Admin</a></li>
<li><?php wp_loginout(); ?></li>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="Syndicate this site using RSS 2.0">Entries <abbr title="Really Simple Syndication">RSS</abbr></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="The latest comments to all posts in RSS">Comments <abbr title="Really Simple Syndication">RSS</abbr></a></li>
<li><a href="http://wordpress.com/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress.com</a></li>
</ul>
</li> --><?php endif; ?>
</ul>
</div>
<hr />
Can somebody please help me?
Thanks,
Marcel van Leeuwen