
Originally Posted by
stevesh
Thinking outside the box here (literally) but could you make your product listing 2 wide and use the image of the calendar (greyed a little) as a background? It'd take some template work.
Here's a thought...
The product listing page still uses TABLES to separate out the list as ODD and EVEN rows.
In an earlier version of ZC, there was the following bit of CSS that added background colors to each ROW. I still use it on some of my sites.
Try it if you like... you can change the HEX COLORS (#xxxxxx) to suit your needs. Delete or comment out other declarations as needed.
All you need do is copy the code below, and paste it at the BOTTOM of stylesheet.css ...
Code:
/*from stylesheet original*/
TR.productListing-odd, TR.upcomingProducts-odd {
background: #E3E3E3;
}
TR.productListing-even, TR.upcomingProducts-even, .productsNotifications {
background: #EDEDED;
}
TD.productListing-data-description-odd {
background: #ffffff;
font-size: 10px;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 12px;
border-bottom: 1px solid #DEDBCB;
}
TD.productListing-data-description-even {
background: #C9F1CF;
font-size: 10px;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 12px;
border-bottom: 1px solid #DEDBCB;
}
Bookmarks