hello,
I vant to assign an specific css style to all links in NAV_TABLE_COLUMN. How can I accomplish that?
add an id tag to all links in NAV_TABLE_COLUMN
Hi
take a look to your conf.template_default.inc.php
and more 
take a look to your conf.template_default.inc.php
Code: Select all
$template_default["nav_table_struct"]["table_class"] = "myNavTable";
..
$template_default["nav_table_struct"]["cell_class"] = "nav_table";
..
$template_default["nav_table_struct"]["cell_active_class"] = "nav_table_active";
......

hi pico!
thnx for your help. What I wanted to do, is to have an ID tag within every generated link that is within the NAV_TABLE_COLUMN menu.
so if you would look at the source of those links they would look something like then I can create a style within frontend.css like
I figured out how to do it in front.func.inc.php. Just add that tag into the "<a..." on lines 935, 940, 949
thnx for your help. What I wanted to do, is to have an ID tag within every generated link that is within the NAV_TABLE_COLUMN menu.
so if you would look at the source of those links they would look something like
Code: Select all
<a href="index.php?overview" id="menu_links">Overview</a>
Code: Select all
a#menu_links { ... }