What will help more is the page source.
In firefox Ctrl U to see the source. Then save it and zip it and attach it to a post.
Or alternatively have a look at the source code yourself. You are looking for something like(but not for the manufacturers sidebox):
Code:
<!--// bof: manufacturers //-->
<div class="leftBoxContainer" id="manufacturers" style="width: 150px">
<h3 class="leftBoxHeading" id="manufacturersHeading"><label>Manufacturers</label></h3>
<div id="manufacturersContent" class="sideBoxContent centeredContent"><form name="manufacturers_form" action="http://www.nickcollie.co.uk/catalog/index.php?main_page=index" method="get"><input type="hidden" name="main_page" value="index" /><select name="manufacturers_id" onchange="this.form.submit();" size="3" style="width: 90%; margin: auto;">
<option value="" selected="selected">Please Select</option>
<option value="1">2007</option>
<option value="3">2008</option>
<option value="2">2009</option>
</select>
</form></div></div>
<!--// eof: manufacturers //-->
This is the manufacturers sidebox. You are looking for the code for the sidebox you are trying to change.
The bit we are interested in is :
Code:
<div class="leftBoxContainer" id="manufacturers" style="width: 150px">
<h3 class="leftBoxHeading" id="manufacturersHeading"><label>Manufacturers</label></h3>
<div id="manufacturersContent" class="sideBoxContent centeredContent">
Which gives us the IDs of the relevant elements and then we can create a stylesheet rule to style those elements.