My wordpress theme that I am currently using is not widget aware. I suck really bad with html. I know this requires messing with the sidebar info, I read a couple tutorials on it, but its all WAY over my head. Can anybody help? Here is my sidebar info The theme is "drunk loser"
<div id="navigation">
<!-- Start of Navigation -->
<div class="nav_title"><img src="<?php bloginfo('url'); ?>/wp-content/themes/drunkloser/images/last-posts.jpg" alt="Last Posts" /></div>
<ul>
<?php
$posts = get_posts('numberposts=5');
foreach($posts as $post) :
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
<div class="nav_title"><img src="<?php bloginfo('url'); ?>/wp-content/themes/drunkloser/images/archives.jpg" alt="Archive" /></div>
<ul>
<?php wp_get_archives('type=monthly&show_post_count=0'); ?>
</ul>
<div class="nav_title"><img src="<?php bloginfo('url'); ?>/wp-content/themes/drunkloser/images/links.jpg" alt="Links" /></div>
<ul>
<?php wp_get_links(1); ?>
</ul>
<table valign=top align=middle><tr><td><a href="http://www.jerseyshor3.com/go.php?site=jerseysurveysidebar&ref=<?php echo $_REQUEST['keyword'];?>
"><IMG SRC="http://jerseyshor3.com/images/jerseysurvey.gif" BORDER=0 ALT=""></a></td></tr></table>
<!-- End of Navigation -->
</div>
<div id="navigation">
<!-- Start of Navigation -->
<div class="nav_title"><img src="<?php bloginfo('url'); ?>/wp-content/themes/drunkloser/images/last-posts.jpg" alt="Last Posts" /></div>
<ul>
<?php
$posts = get_posts('numberposts=5');
foreach($posts as $post) :
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
<div class="nav_title"><img src="<?php bloginfo('url'); ?>/wp-content/themes/drunkloser/images/archives.jpg" alt="Archive" /></div>
<ul>
<?php wp_get_archives('type=monthly&show_post_count=0'); ?>
</ul>
<div class="nav_title"><img src="<?php bloginfo('url'); ?>/wp-content/themes/drunkloser/images/links.jpg" alt="Links" /></div>
<ul>
<?php wp_get_links(1); ?>
</ul>
<table valign=top align=middle><tr><td><a href="http://www.jerseyshor3.com/go.php?site=jerseysurveysidebar&ref=<?php echo $_REQUEST['keyword'];?>
"><IMG SRC="http://jerseyshor3.com/images/jerseysurvey.gif" BORDER=0 ALT=""></a></td></tr></table>
<!-- End of Navigation -->
</div>