Thanks for your reply, Erpe,
I build the site using a local webserver, pointing the actual URL to my 127.0.0.1. That way I can use all site-paths as if they were live. My client already has a webserver on the domain I'm using so I can't upload it to its live-environment yet...
Maybe a schematic display of what I want?
HOME | ARRANGEMENTS | ROOMS
This is "level 1", it's the top horizontal menu. Now, if I click ROOMS, it looks like this:
HOME | ARRANGEMENTS | ROOMS
SINGLE | DOUBLE | SPECIALS
The second line (Single/Double/Specials) is a second invocation of the menu.
By clicking ROOMS in the top menu, the page SINGLE will be the first to load. So, the site is showing the SINGLE page. This all works great.
What I want now, is to have ROOMS and SINGLE be "lit up" in a different color than the other menu-items.
The CSS I use for this is:
.menu a:link, .menu a:visited, .menu a:active {
text-transform:uppercase;
color:#ffffff;
padding:8px; text-decoration:none;
}
.menu a:hover {
text-transform:uppercase;
color:#000000;
text-decoration:none;
}
.menu_current a:link, .menu_current a:visited, .menu_current a:active {
text-transform:uppercase;
color:#000000;
text-decoration:none;
}
.menu_current a:hover {
text-transform:uppercase;
color:#000000;
text-decoration:none;
}
The two menus (top level and the second horizontal menu) are invoked using:
show_menu2(0, SM2_ROOT, SM2_START, SM2_PRETTY, ' | [a][menu_title]</a>', '', '', '', '[a][menu_title]</a> ');
show_menu2(0, SM2_ROOT+1, SM2_START, SM2_PRETTY, ' | [a][menu_title]</a>', '', '', '', '[a][menu_title]</a> ');
I have built site having the "current" page light up the right way in the menu, but never on two levels at the same time. Above that, I can't even get ROOMS (in the above example) to light up, so I assume there's something in the two "show_menu2" invocation lines that should be altered... But what?