Whoa... wait ya'll lost me. :blink:
I realize I have probably made a mess of things due to my limited knowledge... but I am trying.
It appears to me that Glenn has it sussed out. Any custom code that has re-invented the wheel is certainly my doing.
This much I understand and can do in the /includes/modules/your_template/tpl_ezpages_bar_header.php:
```
<div id="navEZPagesTop">
<?php for ($i=1, $n=sizeof($var_linksList); $i<=$n; $i++) { ?>
<a href="<?php echo $var_linksList[$i]['link']; ?>"><?php echo $var_linksList[$i]['name']; ?></a><?php echo ($i < $n ? EZPAGES_SEPARATOR_HEADER : '') . "\n"; ?>
<?php
} // end FOR loop ?>
</div>
Lost me on this part (but it sounds very cool):
> If the login link is named "Order Tracking", you may be able to use "Order Tracking" for the my account link so the code would distinguish between the names but there would be no visible difference.
Have my modifications made it too conviluted or should we do something different? > Yep, it would be easier to use all of the original code in another section of navbar... the original question was easily addressed with that bit of code, but increasing the workload on it changes the balance.
Thanks.