- This topic has 17 replies, 7 voices, and was last updated 13 years, 8 months ago by .
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore Troubleshooting › Thumbnails are displaying poorly in fancy display
Tagged: aspect ratio, estore, images, Internet Explorer, thematic, thumbnails
That looks like a CSS issue to me. Have you modified any CSS code in the plugin?
The stylesheet for the plugin says
.thumb-image{
width:125px;
height:125px;
}
IE apparentl;y ignores this, and I have no idea how to modify it for IE to work.
IE should work fine with that because we test the plugin on IE. You can view this page in IE to confirm this:
http://www.tipsandtricks-hq.com/ecommerce/stylish-product-display-options-for-wp-estore-829
Anyway, try modifying it with the following CSS:
.thumb-image{
width:125px !important;
height:125px !important;
}