Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Text is wrapping images on product display

Text is wrapping images on product display

Locked

Views: 479

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
30 Aug 2010, 9:58 PM
#1
latitudeit avatar

latitudeit

New Zenner

Join Date:
Aug 2010
Posts:
1
Plugin Contributions:
0

Text is wrapping images on product display

I have installed and tweaked v1.3.9f with a template taken from zenflavour.com (7a). I am setting up my site at https://www.printq.co.uk/shop (at least temporarily!) but I cannot stop the text from wrapping the images when it exceeds about 9 lines on any given pruduct listing (look at a4 reams catalog first product 003R90208). I would rather it stayed left aligned. I can see the cell it seems to belong to must be shifting the text because of the image but I cannot find in which file to change this or where. It does not appear to be in the stylesheet. Any help appreciated.

30 Aug 2010, 10:15 PM
#2
nigelt74 avatar

nigelt74

Totally Zenned

Join Date:
Sep 2005
Location:
Waikato, New Zealand
Posts:
1,558
Plugin Contributions:
1

Re: Text is wrapping images on product display

try adding this to the bottom of your stylesheet

#productDescription {
padding-left: 12em;
}

30 Aug 2010, 10:19 PM
#3
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Text is wrapping images on product display

In your templates stylesheet.css file find this

#productDescription, .shippingEstimatorWrapper {
	padding: 0.5em;
}

Seperate into individual lists and make it resemble this and adjust to suit

#productDescription {
        width: 450px;
        margin: 0em 0em 0em 12em;
        }

.shippingEstimatorWrapper {
	padding: 0.5em;
}