Link to home
Start Free TrialLog in
Avatar of Larry Vollmer
Larry Vollmer

asked on

CSS alignment problem

http://tinyurl.com/4xe6t6g

I have a weird alignment issue. If you look at the text :

By Calman Shemi
30" x 40" Signed Serigraph


it does not align up with the descriptions above it.
(see By Bracha Guy
33" x10 1/2" Hand Painted Etching)

any idea how to fix this?
Avatar of Gurvinder Pal Singh
Gurvinder Pal Singh
Flag of India image

because the width of the p tag inside wpsc_description for that product column is 190px, but for everyone else its around 230-240
Avatar of Larry Vollmer
Larry Vollmer

ASKER

what should I change it to? 240?
add this style

.wpsc_description
{
   min-width:240px;
}

.wpsc_description p
{
   min-width:240px;
}
It dipends from what is your goal. the problem is that

.default_product_display .productcol {
    float: right;
    position: relative;
}

in

http://s130859622.onlinehome.us/saddleriver/wp-content/plugins/wp-e-commerce/wpsc-theme/wpsc-default.css?ver=3.8.5.405496


I think that everything is gonna be all right If the div-s, paragraphs have the same size and are position by the same way and the text is positioned the same way.
ASKER CERTIFIED SOLUTION
Avatar of user_n
user_n
Flag of United States of America 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
thanks