Main Stylesheet Changes
The following errors have been fixed.
---------------------------------------------
Code:
#ezPageBoxList li {
margin: 0;
padding: 0.2em. 0em;
}
to
Code:
#ezPageBoxList li {
margin: 0;
padding: 0.2em 0em;
}
-----------------------------------------------
AND (around line 830)
Code:
.centeredContent, TH, #cartEmptyText, #cartBoxGVButton, #cartBoxEmpty, #cartBoxVoucherBalance, .center, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, .cartTotalsDisplay, #cartBoxGVBalance, .accountQuantityDisplay, .ratingRow, LABEL#textAreaReviews, #productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage, .additionalImages, .gvBal, {
text-align: center;
}
to
just take the , out from behind .gvBal
------------------------------------------------
AND (around line 916)
Code:
.wrapperAttribsOptions {
vertical-align: top;
margin: 5px;
float: center;
}
to
Code:
.wrapperAttribsOptions {
vertical-align: top;
margin: 5px;
float: none;
}