Great thank you. Looking much more like I was hoping to get it :)
Just two more things - can I delete the Add selected products to cart (top right) and is it possible to align the price right without aligning everything else right?
Many thanks
Great thank you. Looking much more like I was hoping to get it :)
Just two more things - can I delete the Add selected products to cart (top right) and is it possible to align the price right without aligning everything else right?
Many thanks
Just tried to remove the Add selected products to cart via admin placing 2 instead of 3 but it didn't work. I guess this is now hard coded in??![]()
I've solved the add to issue.
So just need to know if I can align the price right (moving nothing else)
Thanks
There is no stock identifier to style just the price with, so you will have to go back into product_listing.php and add a tag.
Find this:and change to this:PHP Code:case 'PRODUCT_LIST_PRICE':
$lc_price = zen_get_products_display_price($listing->fields['products_id']) . '<br />';
$lc_align = 'right';
$lc_text = $lc_price;
Then add to your stylesheetPHP Code:case 'PRODUCT_LIST_PRICE':
$lc_price = zen_get_products_display_price($listing->fields['products_id']) . '<br />';
$lc_align = 'right';
$lc_text = '<span class="listingPrice">' . $lc_price . '</span>';
and any other styling you want.Code:.listingPrice { float: right; }
Great thanks - really helpful![]()