I would like to move the third colum so that the price and a "more info" link are displayed underneath the description.
http://www.girleshop.co.uk/dresses-c-11.html
How do I go about doing this?
I would like to move the third colum so that the price and a "more info" link are displayed underneath the description.
http://www.girleshop.co.uk/dresses-c-11.html
How do I go about doing this?
Is this possible? I've looked in tpl_tabular_display.tpl but i'm not sure how to edit this?
Hey RobM,
I've been trying to do the same thing - sorta - by moving the price under. Unfortunately, the price is not associated with any classes or id's, so it's very hard to get to move unless you can read PHP and edit with a bit of knowing what you are doing.
For the more info button, you can edit the class .listingBuyNowButton and change the CSS on it.
For by Buy Now/more info piece, I found out you need to have the Buy Now button there (you can set this in your Admin - config - product listing), and you can edit this class. For mine, I have done:
This moves it over and under the description text. Try that and see what it does..Code:.listingBuyNowButton { position:relative; left:-370px; top:50px; }
Hope this can be of some help!
in admin -> config -> Display Product Price/Add to Cart in the box if there is a 0 it is off any other number grater is the sort order. Try putting in 100 it should move it down. no css or coding required
Zen Cart Consulting
If you do need a class for the price on the product listing page findand replace it withCode:$lc_price = zen_get_products_display_price($listing->fields['products_id']) . '<br />';Code:$lc_price = '<div class="price">' . zen_get_products_display_price($listing->fields['products_id']) . '<br /></div>';