Zen Cart Logo
Forums / Upgrading from 1.3.x to 1.3.9 / Need images 3 to a row, not a single row

Need images 3 to a row, not a single row

Locked

Views: 1,297

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
23 Mar 2007, 12:27 AM
#1
redradar avatar

redradar

New Zenner

Join Date:
Mar 2006
Location:
San Francisco, CA
Posts:
44
Plugin Contributions:
0

Need images 3 to a row, not a single row

I'm in the process of upgrading from 1.3.6 to 1.3.7 and experiencing some layout problems.

Here is the new site, showing product image layout problems (1.3.7):
http://www.holymtn.com/new_shop

Here is what is should look like (functioning site, 1.3.6):
http://www.holymtn.com/catalog

I've checked Admin/Configuration/Index Listing. My New Products Columns say per Row 3. My Featured Products Columns say per Row 3. Yet they still display in a single row.

Also I have no boxes around my Product Categories, New Search, Featured Products, Reviews, Info, etc. I used WinMerge to compare my stylesheet file to the new 1.3.7 stylesheet file, and have updated it with my site layout but there still are problems with footers and logo not centering, and the navigation boxes are nonexistent.

Any assistance would be much appreciated.

23 Mar 2007, 1:27 AM
#2
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Need images 3 to a row, not a single row

Redradar:

I'm in the process of upgrading from 1.3.6 to 1.3.7 and experiencing some layout problems.

Here is the new site, showing product image layout problems (1.3.7):
http://www.holymtn.com/new_shop

Here is what is should look like (functioning site, 1.3.6):
http://www.holymtn.com/catalog

I've checked Admin/Configuration/Index Listing. My New Products Columns say per Row 3. My Featured Products Columns say per Row 3. Yet they still display in a single row.

Also I have no boxes around my Product Categories, New Search, Featured Products, Reviews, Info, etc. I used WinMerge to compare my stylesheet file to the new 1.3.7 stylesheet file, and have updated it with my site layout but there still are problems with footers and logo not centering, and the navigation boxes are nonexistent.

Any assistance would be much appreciated.

There's an error in your css, and then everything below that error isn't working. See this section:

.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {
margin: 1em 0em;
.centerBoxWrapper {
border: 1px solid #818180;
border-bottom: 2px solid #818180;
background-color: #fffdf3;
height: 1%;
margin: 1.1em 0;
}

remove the .centerBoxWrapper { that's stuck in there.

Actually, I think you want to separate:

.centerBoxWrapper {
border: 1px solid #818180;
border-bottom: 2px solid #818180;
background-color: #fffdf3;
height: 1%;
margin: 1.1em 0;

out of there, so that the other section is like this:
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {
margin: 1em 0em;
}

23 Mar 2007, 3:03 AM
#3
redradar avatar

redradar

New Zenner

Join Date:
Mar 2006
Location:
San Francisco, CA
Posts:
44
Plugin Contributions:
0

Re: Need images 3 to a row, not a single row

That was it exactly -- good eye! Thank you so much, jettrue!