oh thanks so much for your fast response! I don’t see the things you mentioned. here is my sidebar.php
<div id=”sidebartop”></div>
<div id=”sidemenu”>
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(‘rightsidebar’) ) : ?>
<h4>Meta</h4>
<?php wp_register(); ?>
- <?php wp_loginout(); ?>
<?php wp_meta(); ?>
<h4>Categories</h4>
<?php wp_list_categories(‘title_li=’); ?>
<?php if ( function_exists(‘wp_tag_cloud’) ) : ?>
<?php /*?>available in wp 2.3<?php */?>
<h4>Popular Tags</h4>
<p>
<?php wp_tag_cloud(‘smallest=8&largest=22&number=10’); ?>
</p>
<?php endif; ?>
<h4>Archives</h4>
<?php wp_get_archives(‘type=monthly’); ?>
<h4>Links</h4>
<?php wp_list_bookmarks(‘title_li=0&categorize=0’); ?>
<?php endif; ?>
</div>
<div id=”sidebarbottom”></div>