Problem with Product_Listing.php module
How do I put line space between the products on the main page product listing?
class="productListing-odd"
class="productListing-even"
I know I need to adjust something in the above parameters. But I can not find out how/where.
I would like more "white" space between the products listed on this page:
http://westdakotakobe.com/shop/index...index&cPath=65
The space is NEEDED because the BUY NOW button and PRICE for each product sort of RUN into each other - it would look much better if there were extra space above/below.
Thanks for looking and helping.
Luci
Re: Problem with Product_Listing.php module
You could try this in your stylesheet around line 37
h3 {
font-size:12pt;
padding: .2em;
}
You could also change the font-size to 13 px (or your choice) and get what you are after without adding padding.
Good Luck
Dalton
Re: Problem with Product_Listing.php module
Try adding to the end of your stylesheet.css file
Code:
.productListing-data {
padding: 1.5em 0em 0em 0em;
}
Re: Problem with Product_Listing.php module
.productListing-data {
padding: 1.5em 0em 0em 0em;
}
Adding this fixed it!!!
Thanks!