I am making a template for icy2.0 and am trying to achieve so that when a user is on a page the link will highlight through css showing the user they are on that page.
As icy is nearly alike to phpbb3 I was reading through their template vars.
in icy the code I need is already installed in default.cfg
'SCRIPT_NAME' => str_replace('.' . PHP_EXT, '', $user->data['page']['page_name']),
and then by placing tags and code in overall_header.tpl for example
<!-- IF SCRIPT_NAME eq 'index' -->
<li><a href="#url" id="current">Forum</a></li>
<!-- ELSE -->
<li><a href="#url" >Forum</a></li>
<!-- ENDIF -->
<li><a href="#url" id="current">Forum</a></li>
<!-- ELSE -->
<li><a href="#url" >Forum</a></li>
<!-- ENDIF -->
then using id=current in the css file should by rights show the page as highlighted, but sadly it does not.
As the coding in icy is all new to be compared to older versions anyone possibly have any ideas if this will work or if I have an error somewhere.
Any help would greatly be appreciated and if I get this working I will post a walk through for anyone else who ight need it.

