Zen Cart Logo
Forums / Setting Up Categories, Products, Attributes / How do I add Dotted line/ space in between product listing

How do I add Dotted line/ space in between product listing

Locked

Views: 5,082

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
3 Jun 2008, 5:15 AM
#3
meltdown avatar

meltdown

Totally Zenned

Join Date:
Jun 2006
Location:
My family and I live in Brighton, England
Posts:
947
Plugin Contributions:
0

Re: How do I add Dotted line/ space in between product listing

You might want to look at the Column Divider Pro add-on. It creates a dotted line between products to dress it up a bit and create a visual separation.

16 Jun 2008, 2:56 AM
#4
issam avatar

issam

New Zenner

Join Date:
Jun 2008
Posts:
6
Plugin Contributions:
0

Re: How do I add Dotted line/ space in between product listing

hello,
i tried what you said, but its not working fro me,
can yo give me more details on how to get the doted line between product listing.
i am usin zen cart 1.38 with the default theam

Thanks

16 Jun 2008, 3:55 AM
#5
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: How do I add Dotted line/ space in between product listing

The .productListing-data selectors the op is using work, although in that case the dotted line messes up at the joint between elements.

Unfortunately, it is apparently not possible to give padding or border properties to table row <tr> elements.

The double dotted line is not a standard CSS border-style, so you will need to create your own if you want that. Make an image gif of the double dotted line with transparent background, say 100px wide x 5 px high, save it as /includes/templates/your_template/images/dbldotted.gif, and use that as the background for your products.```
.productListing-odd, .productListing-even {
background: url(../images/dbldotted.gif) bottom center repeat-x;
}

16 Jun 2008, 3:11 PM
#6
issam avatar

issam

New Zenner

Join Date:
Jun 2008
Posts:
6
Plugin Contributions:
0

Re: How do I add Dotted line/ space in between product listing

thanks, i will try that