To remove the circled part, do these things in default wordpress theme:
1. Remove the following code from index.php, archive.php, single.php, search.php (backup current pages before making changes)
<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
2. Replace all code from sidebar.php with the following (backup current page before making changes):
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
?>
<div id="sidebar">
<ul>
<li>
<?php get_search_form(); ?>
</li>
</ul>
</div>
Thanks
Kapil Jain