I have changed the arrangement of my product list in the admin panel, and i would like to align the text description and title to the left, so it looks neater can anyone help???
www.rosesofdevizes.co.uk see garden furniture for an example!
Thanks.
I have changed the arrangement of my product list in the admin panel, and i would like to align the text description and title to the left, so it looks neater can anyone help???
www.rosesofdevizes.co.uk see garden furniture for an example!
Thanks.
You need to specify $lc_align ='left' for both corresponding TABLE_HEADING "cases" around line 30 in product_listing.php and for the contents at line 130-135.
Hi i amended the code areas below, and it didnt change the layout?
see http://www.rosesofdevizes.co.uk/inde...=index&cPath=2
I looked for every $lc_align which looked relevant and changed it to left. Still no change. I changed the file in modules/product_listing.php is this right??
Thanks for your help.
>>title
case 'PRODUCT_LIST_NAME':
$lc_text = TABLE_HEADING_PRODUCTS;
$lc_align = 'left';
$zc_col_count_description++;
break;
>> Product description
if ((($rows-$extra_row)/2) == floor(($rows-$extra_row)/2)) {
$list_box_contents[$rows] = array('params' => 'class="productListing-even"');
} else {
$list_box_contents[$rows] = array('params' => 'class="productListing-odd"');
}
$cur_row = sizeof($list_box_contents) - 1;
for ($col=0, $n=sizeof($column_list); $col<$n; $col++) {
$lc_align = 'left';
Ok, this has been causing me problems, the above advice dod not work, but I finally figured it out. So to share, in case anyone else is trying to figure this out. I changed the css to align text left as below.
TD.productListing-data {
border-bottom : 1px solid #FFFFFF;
text-align: left;
}