Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / line height in Product Detail Description

line height in Product Detail Description

Views: 656

Results 1 to 3 of 3
2 Aug 2011, 7:32 PM
#1
tcjay avatar

tcjay

Zen Follower

Join Date:
Jul 2010
Location:
Boston
Posts:
139
Plugin Contributions:
0

line height in Product Detail Description

I am trying to format the text in the product detail description.

This is the css.

#productDescription .productGeneral .biggerText p{
line-height: 12px;
white-space:pre-wrap;
text-align:left;
padding: 0px;
}

for the url http://www.stitchboutiqueboston.com/knitting-kits/jewel-ruffle-shawl-p-164/

I can not seems format the text eliminating the extra space between the lines.

Using Firebug, there appears to be space in between each line but I cant figure out what is causing it.

TIA Tom :cool:

2 Aug 2011, 8:57 PM
#2
stevesh avatar

stevesh

Black Belt

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

Re: line height in Product Detail Description

You pasted that copy from some kind of WYSIWYG editor (never a good idea, IMO), which added <p> tags between the lines. You'll need to remove those.

3 Aug 2011, 1:08 PM
#3
tcjay avatar

tcjay

Zen Follower

Join Date:
Jul 2010
Location:
Boston
Posts:
139
Plugin Contributions:
0

Re: line height in Product Detail Description

Thank you.