
Originally Posted by
RedrikShuhart
I have found a solution that makes both features, image hover and scrolling sidebox, work perfectly fine in IE6.
1. First of all, you keep the 'style="position:relative"' in includes/classes/bmz_image_handler.class.php intact.
2. Add style="position:relative" to the marquee tag in includes/templates/YOUR_TEMPLATE/sideboxes/tpl_whats_new.php .
So you will have something like $content .= '<MARQUEE style="position:relative" behavior= " ....
3. Add the following block to your stylesheet :
#whatsnewContent{
height: 150px;
overflow: hidden;
position: relative;
}
The block name, whatsnewContent, has to match the id name of the div that's holding the content of the sidebox.
Thats it. Have fun :)