Jump to content

[SOLVED] Internet Explorer 9 Display Problems


Recommended Posts

Hi!

 

My shop is up and running and I'm adding stock everyday. I've recently tested it and everything works great in Firefox and Chrome but in Internet Explorer 9, the product titles and images seem to be slightly off.

 

Is there a way to fix that without having reset things that will make it look different in Firefox/Chrome?

 

My site is www.dilevafashion.com so you can see for yourself.

 

Only IE that's giving me problems as far as I can tell.

 

Thanks!

Link to comment
Share on other sites

Here are a few things that might help after looking over the site.

In the products-list.css file, there is no text transform to rotate the new banner for ie. So on or around line 40 you would need to add

-ms-transform: rotate(45deg); /* IE 9 */

 

Also, more than likely the reason your dress names are bleeding to the side in ie is because your center box in your product loop needs a width. Around line 24 look for this

#product_list li .center_block {
float: left;
padding: 0 7px;
}

and change it to this

#product_list li .center_block {
float: left;
padding: 0 7px;
width:213px
}

 

those should get you on the road to see what else breaks and they should not change the ff or chrome rendering.

  • Like 1
Link to comment
Share on other sites

DesignHaus42,

 

Thank you so much! That seems to have fixed the problem completely, as far as I can see. However, I cannot check on IE7 or 8 but it's definitely fixed 9.

 

I really appreciate it! :)

 

Sara

Link to comment
Share on other sites

  • 4 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...