Well, I poked around. In the functions file, I had to change the default h2 to h3. Then in the sidebar file, I moved some of the code around to fix it, and then I used “sidebar 1” to wrap the blogroll and “sidebar 2” to wrap nothing but the widgets will sit between sidebar 1 and your Meta. The code is down below. Thanks for the theme!
<!-- Sidebar Start -->
<div id="sidebar">
<div class="rightPan">
<span class="stc"> </span>
<h3>Browse by Categories</h3>
<ul>
<?php wp_list_categories('show_count=1&title_li='); ?>
</ul>
<div class="gbc"><span class="sbc"> </span></div>
</div>
<!-- browse by Tag-->
<div class="rightPan">
<span class="stc"> </span>
<h3>Browse by Tag</h3>
<div class="tags">
<?php wp_tag_cloud('smallest=10&largest=17&number=100&orderby=name&order=ASC'); ?>
</div>
<div class="gbc"><span class="sbc"> </span></div>
</div>
<!-- browse by tag box -->
<div class="rightPan">
<span class="stc"> </span>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar 1') ) : ?>
<h3>Blogroll</h3>
<ul>
<?php wp_list_bookmarks('categorize=0&title_li='); ?>
</ul>
<?php endif; ?>
<div class="gbc"><span class="sbc"> </span></div>
</div>
<div class="rightPan">
<span class="stc"> </span>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar 2') ) : ?>
<?php endif; ?>
<div class="gbc"><span class="sbc"> </span></div>
</div>
<div class="rightPan">
<span class="stc"> </span>
<h3>Meta</h3>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
<div class="gbc"><span class="sbc"> </span></div>
</div>
</div>
<!-- Sidebar End -->