really you need to edit the CSS to add some space to the links in the sidebar. I looked at the link you provided and really it doesn’t look like you are using wordpress. Ultimately you need to use the CSS line-height:(some number that is correct); on the ul values in the sidebar. You may also have to go into the sidebar.php file and add a class name to the ul value or encase the sidebar.php file in an id so you can only affect the lists in the sidebar while leaving the lists in your posts alone.
I am really lost with the ul stuff.
I think I found the code for the recent posts:
<?php /* Widgetized sidebar, */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?>
<h3 class="widgettitle">Categories</h3>
<ul>
<?php wp_list_categories('show_count=0&title_li='); ?>
</ul>
<h3 class="widgettitle">Recent Posts</h3>
<ul>
<?php wp_get_archives('type=postbypost&limit=5&format=html&before=&after='); ?>
</ul>
<?php if ( function_exists('wp_tag_cloud') ) { ?>
<h3 class="widgettitle">Tags</h3>
<?php; } ?>
<h3 class="widgettitle">Meta</h3>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
<?php endif; ?>
the line I’d need to correct is `
<h3 class=”widgettitle”>Recent Posts</h3>
`
but how do I put the <br /></br>
so that it entered correctly. I’m goign to try to edit the index “home” page via HTML coding and then replace the file, unless someone has a better idea.