Ok, I've checked the solution I've posted on 23 May 2006 11:32, and it seems it doesn't work for some reason in current version of IE.
Here is the new solution (I think, it's even more comfortable).
Specify in CSS some new class for your menu links:
.menuLinks A:link { color: #0000FF; text-decoration: underline; }
.menuLinks A:visited { color: #00FF00; text-decoration: underline; }
.menuLinks A:active { color: #0000FF; text-decoration: underline; }
.menuLinks A:hover { color: #FF0000; text-decoration: underline; }
Then in templates/main_header.html,
you will need to "surround" all link items with <span> tag of the same class. Example:
<tr>
<td class="caption2" colspan="2"><span class="menuLinks"><b> {$l_sepr}{$l_menu[0]}{$l_menu[7]}{$l_menu[3]}{$l_menu[2]}{$l_ menu[1]}{$l_menu[4]}{$l_menu[5]}{$l_menu[6]}{$l_sepr}</b></span></td></tr>
</table>
I found this with the help of echoecho site.
Nothing else needs to be changed. It works in Mozilla, Opera and IE6 (should work also in IE7 as well).