Zen Cart Logo
Forums / General Questions / new products listing on main page

new products listing on main page

Locked

Views: 1,197

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
14 Jun 2008, 3:13 AM
#1
issam avatar

issam

New Zenner

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

new products listing on main page

hello,
I was wondering if you guys could give me a hand with New Products For on main page on the main page.
i have
New Products Columns per Row set to 3 and
Special Products Columns per Row set to 3
but it shows 2 items on the first line, then 1 itme on the 2nd line
then 2 itmes on the 3rd line and 1 item on thr 4th line

can any one tel me how can i fix it .....it was working fine last month

i am runing zen cart 1.38a

my web site URL
http://www.sonicwarehouse.net/

14 Jun 2008, 5:49 AM
#2
gjh42 avatar

gjh42

Black Belt

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

Re: new products listing on main page

The padding in this line in your stylesheet```
.centeredContent, TH, #cartEmptyText, #cartBoxGVButton, #cartBoxEmpty, #cartBoxVoucherBalance, #navCatTabsWrapper, #navEZPageNextPrev, #bannerOne, #bannerTwo, #bannerThree, #bannerFour, #bannerFive, #bannerSix, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP, .center, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, .cartTotalsDisplay, #cartBoxGVBalance, .leftBoxHeading, .centerBoxHeading,.rightBoxHeading, .productListing-data, .accountQuantityDisplay, .ratingRow, LABEL#textAreaReviews, #productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew, .gvBal, .attribImg {
text-align: center;
padding: 0.6em;

Move the .centerBoxContentsNew to its own declaration and reduce the padding to 0: ```
.centeredContent, TH, #cartEmptyText, #cartBoxGVButton, #cartBoxEmpty, #cartBoxVoucherBalance, #navCatTabsWrapper, #navEZPageNextPrev, #bannerOne, #bannerTwo, #bannerThree, #bannerFour, #bannerFive, #bannerSix, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP, .center, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, .cartTotalsDisplay, #cartBoxGVBalance, .leftBoxHeading, .centerBoxHeading,.rightBoxHeading, .productListing-data, .accountQuantityDisplay, .ratingRow, LABEL#textAreaReviews, #productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .gvBal, .attribImg {
	text-align: center;
        padding: 0.6em;
}

.centerBoxContentsNew {
	text-align: center;
        padding: 0.0em;
}
14 Jun 2008, 4:48 PM
#3
issam avatar

issam

New Zenner

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

Re: new products listing on main page

Glenn,
Thank you so much, that worked