I may have solved the problem. That is, I found some code that Otto42 posted for someone who had lost the sidebar blogroll for a different reason. With this code posted in sidebar.php, the blogroll now appears:
<ul><li class="listHeader"><h2><?php _e('Archives'); ?></h2>
<?php wp_get_archives('type=monthly'); ?>
</ul>
<ul><?php wp_list_bookmarks('before=<li>&after=</li>&orderby=name&show_description=0&show_updated=1');
?>
</ul>
Problem “solved”, although I haven’t learned by using query_post(category_name=) in sidebar.php was causing the blogroll to disappear.
Will
Oops2: Looks like I need to repost the code:
<li class=”widget”><h2 class=”widgettitle”>Posts</h2>
<?php query_posts(‘category_name=Posts’); ?>
Oh, one more thing: my site is http://www.sketchmates.com/blog
Thx,
Will