Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Need multiple columns in subcategories

Need multiple columns in subcategories

Locked

Views: 835

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
3 Nov 2008, 3:28 PM
#1
stalb33 avatar

stalb33

New Zenner

Join Date:
Oct 2008
Posts:
55
Plugin Contributions:
0

Need multiple columns in subcategories

Go here and you will see my issue.
http://spectechind.com/store/index.php?main_page=index&cPath=659_662

I need to learn how to format these type of pages. For example, the most important change is: needing at least two columns to shrink page size and easily see all categories without scrolling.

I would also like to know how to center the main image (BW CONTROLS image at top)

Thanks.

3 Nov 2008, 4:00 PM
#2
Kim avatar

Kim

Obaa-san

Join Date:
Jun 2003
Location:
West Coast, North America
Posts:
26,604
Plugin Contributions:
0

Re: Need multiple columns in subcategories

I will bet that you are missing a float: left; for that section in your stylesheet

3 Nov 2008, 4:05 PM
#3
stalb33 avatar

stalb33

New Zenner

Join Date:
Oct 2008
Posts:
55
Plugin Contributions:
0

Re: Need multiple columns in subcategories

i don't know what that means

3 Nov 2008, 4:11 PM
#4
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Need multiple columns in subcategories

It means that the part in red below, which is in the stock Zencart stylesheet, is missing from yours.

#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
margin: 0em;
text-align: center;
padding-top: 0px;
float:left;
}

Add this to your stylesheet to center the category image.

.categoryImg {text-align:center;}

3 Nov 2008, 4:15 PM
#5
stalb33 avatar

stalb33

New Zenner

Join Date:
Oct 2008
Posts:
55
Plugin Contributions:
0

Re: Need multiple columns in subcategories

Perfect! Thanks for walking me through this.