Hi Kim,
I achieve this with CSS:
Code:
#header-menu a
{
font-size: 14px;
color: #8a8a8a;
text-decoration: none;
}
#header-menu a:hover
{
color: #000000;
text-decoration: none;
}
/* ACTIVE PAGES */
#header-menu a.StaticSelectedStyle:link, #header-menu a.StaticSelectedStyle:visited
{
color: #000000;
}
This makes my menu items grey, black when someone hovers and makes the active link also black.
You can obviously change this to your formatting requirements.
As for your second requirement I am not too sure, think you may have to do this programmatically. As you are viewing another page so the above CSS will not have any effect.
Hope that helps.