Multi Page Checkout Help

When I checkout on the Step 2. Address page if i don't enter a zip code

the error notification shows below the zip code field. But for some reason

it ends up bumping the shipping address box that is on the right side of the billing

address down below the billing address instead of floating next to it.



Anyone have any idea how I can fix this? Is this a bug?



here is my demo install of cs-cart:

url removed


  1. Please choose a product add to cart
  2. Check Out
  3. login as customer/customer
  4. Click on step 2. address.
  5. Remove zip-code and click continue and you will

    see my problem. It seems to be widening the billing

    address section and the zip-code error box seems to

    be the problem.

[quote name='solesurvivor' timestamp='1322758124' post='127092']

When I checkout on the Step 2. Address page if i don't enter a zip code

the error notification shows below the zip code field. But for some reason

it ends up bumping the shipping address box that is on the right side of the billing

address down below the billing address instead of floating next to it.



Anyone have any idea how I can fix this? Is this a bug?



here is my demo install of cs-cart:

http://72.44.94.93/~leatherb/


  1. Please choose a product add to cart
  2. Check Out
  3. login as customer/customer
  4. Click on step 2. address.
  5. Remove zip-code and click continue and you will

    see my problem. It seems to be widening the billing

    address section and the zip-code error box seems to

    be the problem.

    [/quote]





    You can try this for the fix your problem


The ZIP / Postal code in the Zip/postal code field is incorrect.

The correct format is 01342 (01342-5678).

The Zip/postal code field is mandatory.




in your code it was that

The ZIP / Postal code in the Zip/postal code field is incorrect.The correct format is 01342 (01342-5678).

The Zip/postal code field is mandatory.

from Admin panel -Content-Languages

Search for Pattern: error_validator_zipcode



in there you can find.





Another solution for fix,



problem is in that file skins/clarity_ssl/customer/styles_custom.css



padding making problem. padding: 0 8px; and padding-left: 5px;

you can remove for fix. when you remove that padding lines, You don't need to change language values.





.error-message .message {

padding: 0 8px;

margin-bottom: 8px;

border: solid #221211 1px;

padding-left: 5px;

}