Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore Troubleshooting › Product thumbnail images not displaying properly in IE
Tagged: IE issues
- This topic has 10 replies, 2 voices, and was last updated 13 years, 7 months ago by slaing.
-
AuthorPosts
-
April 14, 2011 at 5:50 pm #3183slaingMember
Hi,
My product thumbnail images are not displaying properly in IE, however they display fine with Firefox and Safari. If I set IE to run in Compatability mode, then the images display okay. I have enabled Smart Image mode in the WP eStore settings and that did not resolve the issue. the lightbox effect is enabled but I disabled it to test and that made no difference either.
Assistance is muchly appreciated.
WP ver: 3.1.1
Site URL: http://www.shanelaing.com/music
thanks,
April 15, 2011 at 12:28 am #31332amin007ParticipantThere is a good chance that some of your theme’s CSS is conflicting with the thumbnail images’s CSS.
Lets try this tweak. Please open the “wp_eStore_style.css” file and search for the following:
.thumb-image{
width:125px;
height:125px;
}Once you find it replace it with the following:
.thumb-image{
width:125px !important;
height:125px !important;
}April 15, 2011 at 1:20 pm #31333slaingMemberI’ve implemented the tweak you indicated above but it hasn’t changed anything.
thanks for your help, any other suggestions?
—
SL
April 16, 2011 at 12:03 am #31334amin007ParticipantLets try to identify where the conflict is coming from. Can you do this test and let me know what you find?
https://support.tipsandtricks-hq.com/forums/topic/test-to-identy-a-conflicting-theme-or-plugin
April 16, 2011 at 12:45 am #31335slaingMemberOk, I activated the default theme and the image display issue is not there. Reactivate my theme and the problem returns, so it seems the issue is theme related.
Are there any other suggestions besides switching to a different theme? I paid good money for that theme and have had no other issues with it besides this image display problem with the product image thumbnails.
thanks,
April 16, 2011 at 8:57 pm #31336amin007ParticipantThis is just a CSS conflict so you shouldn’t need to change the theme. Please try adding the following in the CSS file
.eStore-thumbnail a img{
width:125px !important;
height:125px !important;
}April 17, 2011 at 3:00 am #31337slaingMemberAmin,
I added the above to the “wp_eStore_style.css” – I assume that is the CSS you mean? At any rate, adding this to that CSS makes no difference to the product thumb image display issue.
thanks,
April 17, 2011 at 4:56 am #31338amin007ParticipantOkay I will send you an email to get site access so I can checkout the CSS
April 17, 2011 at 4:22 pm #31339slaingMemberEmail sent…let me know how it goes! thanks.
April 18, 2011 at 5:27 am #31340amin007ParticipantThe following change helped:
Find the following CSS in the “wp_eStore_style.css” file:
.eStore-thumbnail {
float:left;
margin-right:12px
}Once you find it change it to the following
.eStore-thumbnail {
width:125px !important;
height:125px !important;
float:left;
margin-right:12px
}April 18, 2011 at 11:07 am #31341slaingMemberThat’s great! Works like a charm, thanks so much!
-
AuthorPosts
- You must be logged in to reply to this topic.