Hi,
I've found a solution for this bug - it is a IE7 rendering bug connected with our equal columns technique. When column has background based on container border then every links placed on other elements or elements placed in links are greyed out on hover.
Solution is relative easy (it will be implemented in nearest ICKI Sports update).
In file index.php please remove code:
- Code: Select all
<?php if($this->countModules('right')) : ?>border-right:<?php echo $column_width; ?>px solid #2d2f31;<?php endif; ?>
(it is placed in div#component)
In files style1.css and style2.css please add this code:
- Code: Select all
div#right{
background:#2d2f31;
}
After these lines:
- Code: Select all
div.users_wrap,
div.module_wrap{
background:#313335 url(../images/style1/bg_area.png) repeat-x left bottom;
}
And finally please add in template_scripts.js file this code:
- Code: Select all
// equal columns
var con_h = $('wrapper_content').getSize().size.y;
if($('right').getSize().size.y < con_h) $('right').setStyle('height',con_h+"px");
after lines:
- Code: Select all
Fx.Opacity = Fx.Style.extend({initialize: function(el, options){this.now = 1;this.parent(el, 'opacity', options);},toggle: function(){return (this.now > 0) ? this.start(1, 0) : this.start(0, 1);},show: function(){return this.set(1);}});
It should works fine