Hi,
For this case, please open Iconmenu.class.php file in templatesja_utahia_iija_menus folder, at about line 127, find following code:
[PHP]if( !isset($_SERVER[‘HTTP_USER_AGENT’]) ||
!preg_match($msie,$_SERVER[‘HTTP_USER_AGENT’]) ||
preg_match(‘/opera/i’,$_SERVER[‘HTTP_USER_AGENT’])) {
$txt = ‘<img src=”images/stories/’. $menu_image .'” border=”0″ hspace=”0″ vspace=”0″ alt=”‘. $row->name .'”‘.$clsactive.’ style=”width: ‘.$this->getParam(‘icon_small’).’px; height: ‘.$this->getParam(‘icon_small’).’px;” />’;
} else {
$txt = ‘<img src=”images/blank.png” border=”0″ hspace=”0″ vspace=”0″ alt=”‘. $row->name .'”‘.$clsactive.’ style=”width: ‘.$this->getParam(‘icon_small’).’px; height: ‘.$this->getParam(‘icon_small’).’px; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=”.JURI::base().’images/stories/’. $menu_image .”, sizingMethod=scale);” />’;
}[/PHP]
and change to:
[PHP]if( !isset($_SERVER[‘HTTP_USER_AGENT’]) ||
!preg_match($msie,$_SERVER[‘HTTP_USER_AGENT’]) ||
preg_match(‘/opera/i’,$_SERVER[‘HTTP_USER_AGENT’])) {
$txt = ‘<img src=”images/stories/’. $menu_image .'” border=”0″ hspace=”0″ vspace=”0″ ‘.$clsactive.’ style=”width: ‘.$this->getParam(‘icon_small’).’px; height: ‘.$this->getParam(‘icon_small’).’px;” />’;
} else {
$txt = ‘<img src=”images/blank.png” border=”0″ hspace=”0″ vspace=”0″ ‘.$clsactive.’ style=”width: ‘.$this->getParam(‘icon_small’).’px; height: ‘.$this->getParam(‘icon_small’).’px; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=”.JURI::base().’images/stories/’. $menu_image .”, sizingMethod=scale);” />’;
}[/PHP]