You guys rock. Thanks. I'll play with it in the morning.
-- Theresa Mesa, http://mesadesignhouse.com "CSS is a wonderful terrible thing..." On 7/19/05 8:43 PM, "Al Sparber" <[EMAIL PROTECTED]> wrote: > > Use a body ID method. > > Leave your main link styles for the menu the way they are as > descendants of the leftnav DIV. Then... > > Id the body: > > <body id="home"> > > Then ID each link: > > <div id="leftnav"> > <ul> > <li><a href="/index.shtml" id="home-link">Home</a></li> > <li><a href="/about-us.shtml" id="aboutus-link">About Us</a></li> > <li><a href="/portfolio.shtml" id="portfolio-link">Portfolio</a></li> > <li><a href="/testimonials.shtml" > id="testimonials-link">Testimonials</a></li> > <li><a href="/contact-us.shtml" id="contactus-link">Contact > Us</a></li> > </ul> > </div> > > Write your uberlink rule like this: > > #home #home-link, #aboutus #aboutus-link, > #portfolio #portfolio-link, #testimonials #testimonials-link, > #contactus #contactus-link { > background-image: url(perry_images/blue.gif) !important; > } > > Now you simply change the ID on the body element to set your > "uberlink" > > <body id="home"> > <body id="aboutus"> > <body id="portfolio"> > <body id="testimonials"> > <body id="contactus"> > > Al Sparber > PVII > http://www.projectseven.com > > "Designing with CSS is sometimes like barreling down a crumbling > mountain road at 90 miles per hour secure in the knowledge that > repairs are scheduled for next Tuesday". > > > > > > ______________________________________________________________________ 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/
