Yes that’s it, but when I remove it I get errors becuase I am not remving it properly. Here is the code can you show me:
` <div id=”sidebar” class=”sidecol”>
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar() ) : else : ?>
<?php if(is_home()) {?>
-
<?php }?>
-
<h2><?php _e(‘Search’); ?></h2>
<form id=”searchform” method=”get” action=”<?php bloginfo(‘siteurl’)?>/”>
<input type=”text” name=”s” id=”s” class=”textbox” value=”<?php echo wp_specialchars($s, 1); ?>” />
<input id=”btnSearch” type=”submit” name=”submit” value=”<?php _e(‘Go’); ?>” />
</form>
-
<h2><?php _e(‘Pages’); ?></h2>
<?php wp_list_pages(‘title_li=’ ); ?>
-
<h2>
<?php _e(‘Categories’); ?>
</h2>
<?php wp_list_cats(‘optioncount=1&hierarchical=1’); ?>
<?php if(is_home()) get_links_list(); ?>
-
<h2>
<?php _e(‘Monthly’); ?>
</h2>
<?php wp_get_archives(‘type=monthly&show_post_count=true’); ?>
<?php if(is_home()) { ?>
<?php wp_register(); ?>
- <?php wp_loginout(); ?>
<?php wp_meta(); ?>
<?php } ?>
<?php endif; ?>
</div>
<div style=”clear:both;”></div>
Thanks.