#productImageWrapper {
float: left;
width: 120px;
}
If you need 380px of margin to clear your main image, limiting the image wrapper to 120px is likely to cause problems.
#productImageWrapper {
float: left;
width: 120px;
}
If you need 380px of margin to clear your main image, limiting the image wrapper to 120px is likely to cause problems.
Hi,
I installed this mod but my product description fall below the pics in IE how can I fix that. Here is the preview page:
http://localautonj.com/zencart/index...&products_id=6
One more thing: I am pulling the class "clearboth" from the main stylesheet; if you tweaked the stylesheet, and the class isn't there, it won't work.
You might want to use HTML instead, like so:
<br clear="both" />
I commented out both lines and still the same.
The only thing that can cause that effect is the <br /> tag, discussed above.
Try using the html version, or reuploading the template to your site, maybe it got corrupt over ftp transfer.
Please post your main CSS, additional images CSS, and template you are using in a zip file here, so I might take a look.
Thanks.
I haven't used this Mod but in checking code for the page mentioned, I can see there are coding errors in the UL that should be corrected.
Incorrect
<ul><br /><li>Vehicle Make: Ford<br /><li>Vehicle Model: Explorer<br /><li> ...
Correct
<ul><li>Vehicle Make: Ford</li><li>Vehicle Model: Explorer</li><li> ...
After that, if IE is still giving you problems, see if you can make the width of your id="productDescription" DIV smaller. Right now it is 320px which might be too wide for IE. Try 300px and see what happens.