
Originally Posted by
antpez
If you want a quick fix go into this file: /includes/templates/YOUR-TEMPLATE/common/html_header.php
and find the following bit of code:
/**
* load stylesheets on a per-page/per-language/per-product/per-manufacturer/per-category basis. Concept by Juxi Zoza.
*/
And add this above it:
echo '<!--[if IE]>
<style type="text/css">
.price{margin-bottom:8px;}
</style>
<![endif]-->';
/**
* load stylesheets on a per-page/per-language/per-product/per-manufacturer/per-category basis. Concept by Juxi Zoza.
*/
You can also define an ie-stylesheet there as well, so you could add any fixes you may need for IE to that stylesheet in the future.
I am sure there's other easier ways to fix this, but for now you can get it to work by following those instructions.