Magento Checkout Small Error

2019-08-27 15:44发布

问题:

I'm having some problems related to the design of the magento checkout process on Internet Explorer. When the first-step is correctly completed and the "Continue" button is clicked, some elements from the first-step form still remain visible even though the div that contains them has the styles set to display:none.

I have no idea why this is happening, can any of you take a look ? You need to try and order something and go to the checkout process and try to get by the first step.

The problem appears only on IE 8 & 9, cause I restricted older versions on this website.

All the best!

回答1:

First check your tags. I think the li tag is not closed properly.

It's showing </li/> for the <li id="opc-billing" class="allow"> opening tag.

Which is obviously wrong.

If checking that doesn't work, then try giving the style

overflow:hidden

to the

<li> or the DIV 

inside it.

I think that will work.