Tuesday, July 19, 2005, 10:28:02 PM, Theresa Mesa wrote:
> Navigation is in SSI. **I'd like to keep it there.**

So your navigation markup can't change.  This means on every page
some CSS or other markup must change (or some Javascript must change
something--we won't get into that).

I believe the easiest way to do this is to give each page its own class for
the BODY element, using, say, the ids you have here:
http://www.mdh-test.com/perry/includes/nav.html

So on the home page you'll have <body class="home">
on the About page you'll have <body class="aboutus">
...

Now in a site-wide style sheet, you can do this:

.home #home,
.aboutus #aboutus,
...
{
  /* special navigation style here */
}

Steve
-- 
http://mrclay.org/ : http://frenchhorns.mrclay.org/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to