How do I get rid of the extra items on a side bar

items such as
"Archives
March 2013
Categories
Uncategorized (1)
Meta
Site Admin
Log out
WordPress
Subscribe
Entries (RSS)
Comments (RSS)
"
I check the widget area. my sidebars have one widget each and no widgets respectivly.
also for some reason the styling for one of the sidebars is fine on index page.
but lost on the other pages I created in wp-admin.

Thank you
D

That looks like the standard stuff that comes with WP, and the best option is to remove it from the templates themselves (is it sidebar.php? It’s years since I used WP). The alternative is to hide them via CSS, but that’s a really poor alternative.

Yep and that is my prob.
I have removed it from everywhere I thought it would cause it.
there are no widgets selected in the wp-admin. Not sure where else to go to deleted it. and also it does this to one but not my other side bar menu.
I am calling both with
<?php include (TEMPLATEPATH . ‘/sidebar01.php’); ?>
<?php include (TEMPLATEPATH . ‘/sidebar02.php’); ?>
and for example this is the nav for sidebar02

<div id="sideBar02">
<nav id="nav02">
<?php wp_nav_menu(array('menu' => 'secNavMenu')); ?>
</nav>
</div>

can’t find where it gets the other items…

Well I think it might be a case of If no widgets selected then display X. Go Into each sidebarX.php and check for the code you should be able to solve the issue. Otherwise kindly post screenshot of widget area and post code for the sidebar.php as well as the sidebarX.php