Link to home
Start Free TrialLog in
Avatar of SonicVoom
SonicVoomFlag for United States of America

asked on

remove big space in content area

http://generationthrive.com/vitality-shop/books-categories/raw-emotions/

I'm stuck on the big space in the middle of the page before the description.

I attempted div.producttext {clear:none;} which brings .producttext to the top. Only then it covers the product image. Why is this gap occurring? How can I make the description sit right under the content above it?
Avatar of PragmatiCoder
PragmatiCoder

In wpsc_style.css, search for body.single-wpsc-product .producttext change top: -80px for -390px

body.single-wpsc-product .producttext {
    position: relative;
    top: -390px;
}

Open in new window


BTW It works on all browsers, except ie 8 and 9... in ie8 and 9 all the styles are messed up :S
ASKER CERTIFIED SOLUTION
Avatar of darkapple
darkapple
Flag of Nepal image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Try

 div.wpsc_description {
    margin-bottom: 10px;
    padding-top: 60px;
}
Avatar of SonicVoom

ASKER

It was something to do with relative vs absolute positioning.
Yours was related, but not really what I ended up doing.