@gjh42
Hi Glen,
Excuse me, I forgot to write here my solution of the problem.
It is not exactly a solution, but some kind...
The links, that I needed in header was EZ pages with internal/external links, who lead to a category or any other page that I want to have in header menu.
Because I don't change this links often, I edit tpl_header.php, wrote links there and check for "current" page in a way like this:
Code:
<a href="index.php?main_page=index&cPath=20" class="
<?php if ((in_array($cPath,explode(",",'20,20_24,20_25,20_26,20_27,20_28,20_29,20_30,20_31,20_32,20_33,20_34,20_35'))) or (in_array($current_page_base,explode(",",'advanced_search_result_m')))) {
echo 'current';}?>">men's clothing</a><?php echo EZPAGES_SEPARATOR_HEADER;?>
and of course I define "current" class in css.
Best regards