Dear imcririna43!
Please open the file: templatesja_selenilibsja.template.helper.php and try to find code:
[PHP]
$msie=’/msies(7|8.[0-9]).*(win)/i’;
if (preg_match($msie,$agent)) $browser = ‘IE7′;
[/PHP]
and replace:
[PHP]
$msie=’/msies(7|8.[0-9]).*(win)/i’;
if (preg_match($msie,$agent, $match)) { $browser = ‘IE’.(int)$match[1];
}
[/PHP]
and Open the file: templatesja_selenilayoutsdefault.php and find code:
[PHP]
<?php if ($this->isIE6()) : ?>
<?php $this->loadBlock(‘ie6/ie6warning’) ?>
<?php endif; ?>
[/PHP]
replace:
[PHP]
<?php if ($this->browser() == ‘IE8’) : ?>
<?php $this->loadBlock(‘ie6/ie6warning’) ?>
<?php endif; ?>
[/PHP]
Good luck