Well, here's the code to create the sidebar:
<div class="sidebox">
<div class="boxhead"><h3><?php _e('Blog Roll'); ?></h3>
</div>
<div class="boxbody">
<?php get_links('-1', '
- ', '
', ' ', 0, 'category', 0); ?>
</div>
</div>
(seems to be an random in there, but removing it made no difference.)
and here is the relevant CSS code from style.css
.sidebox {
margin: 0px; /* center for now */
width: 17.5em; /* ems so it will grow */
background: url('images/sbbody-r.gif') no-repeat bottom right;
font-size: 100%;
}
.boxhead {
background: url('images/sbhead-r.gif') no-repeat top right;
margin: 0;
padding: 0;
text-align: left;
}
.boxbody {
background: url('images/sbbody-l.gif') no-repeat bottom left;
margin: 0;
padding: 5px;
font-size: 1.0em;
font-weight: bold;
}
Any help would be appreciated!