Knowledgebase: One Page Checkout
My checkout buttons are not displaying correctly using Internet Explorer and X-Cart 4.2.3 (or greater)
Posted by Nick Poindexter on 04 March 2010 05:31 PM
The checkout doesn't contain any internal button code. It calls the standard X-Cart buttons templates.

However, the X-Cart button code in 4.2 has been re-written, and is not compatible with IE. To over come bugs in the CSS code or IE, or both, X-Cart issued a patch to dynamically change the button CSS.

There are two options to resolve this:

#1. Open your skin1/checkout_one.css file and insert this CSS rule at the end of the file:

button.button .button-right {
min-width:100px;
}



#2. If the first option doesn't work on your store apply this patch:
for-flc-new-customer-button-DIFF_39605.txt (1.3 KB)


OR manually insert the following code at the very end of the skin1/common.js file:

function change_width_iefix(){
$("td div button").each(function() {
$(this).width("auto").width($(this).width());
});
}


Then open the skin1/modules/Checkout_One/checkout_one_home_42.tpl and change this:




to:


Comments (0)
Post a new comment
 
 
Full Name:
Email:
Comments: