Hi I am trying to change the width of the product list columns, product image, item name and price. I am using the blue_ r theme and zencart version 1.5.5. So far I have tried to change the price column from the admin panel from 125 to 25px but this had no effect on the column but did show in the html using firebug. Firebug also shows

<div id="productListing">
<div id="productsListingTopNumber" class="navSplitPagesResult back">
<div id="productsListingListingTopLinks" class="navSplitPagesLinks forward"> </div>
<br class="clearBoth">
<table id="cat65Table" class="tabTable">
<tbody>
<tr class="productListing-rowheading">
<th id="listCell0-0" class="productListing-heading" align="center" scope="col">Product Image</th>
<th id="listCell0-1" class="productListing-heading" scope="col">
<th id="listCell0-2" class="productListing-heading" width="25" align="right" scope="col">

so i tried adding

#listCell0-1 { width: 30%; }
#listCell0-2 {width: 50%;}
#listCell0-3 {width: 20%;}
and different combinations there of to the stylesheet.css for my theme this had no effect either. Developer tools search could not find any reference to listcell0 at all.

Can anyone tell me how to change these widths or at least what file defines listcell0

Link to one of the pages in question
http://www.pappyjames.com/shop/index...index&cPath=65

Thanks in advance
Freecat