Try with leaving activeSubmenuItem empty, it's in layout.php.
PHP:var activeSubmenuItem='';
<div id='news_Submenu' class='Submenu'>
<a href='?subtopic=latestnews'>
<div id='submenu_latestnews' class='Submenuitem' onMouseOver='MouseOverSubmenuItem(this)' onMouseOut='MouseOutSubmenuItem(this)'>
<div class='LeftChain' style='background-image:url(<?PHP echo $layout_name; ?>/images/general/chain.gif);'></div>
<div id='ActiveSubmenuItemIcon_latestnews' class='ActiveSubmenuItemIcon' style='background-image:url(<?PHP echo $layout_name; ?>/images/menu/icon-activesubmenu.gif);'></div>
<div class='SubmenuitemLabel'>Latest News</div>
<div class='RightChain' style='background-image:url(<?PHP echo $layout_name; ?>/images/general/chain.gif);'></div>
</div>
</a>
var activeSubmenuItem='latestnews';
var activeSubmenuItem='<?PHP echo $subtopic; ?>';
I'm currently viewing your website and I can see this in the beginning of the layout.
PHP:var activeSubmenuItem='latestnews';
Probably looks like this if you open up layout.php
PHP:var activeSubmenuItem='<?PHP echo $subtopic; ?>';
Just search after var activeSubmenuItem and remove the content between the apostrophes.![]()