Wait, the links are in a server side include, not on the page itself. The
page is linking to the virtual include, so essentially, the information is
the same on each page. Normally, this is a wonderful way of doing
navigation, banners, and footers. Make one change, and it affects every
page. How do I affect the page's navigation without pulling the nav out of
the SSI and putting it on each page?

I think this is also what threw me on the Uberlink page.


-- 
Theresa Mesa, http://mesadesignhouse.com
"CSS is a wonderful terrible thing..."



On 7/19/05 7:57 PM, "Al Sparber" <[EMAIL PROTECTED]> wrote:
> 
> You can use many methods to set a current page link state, beyond what
> we do in the Uberlink titorial, but the mechanics for setting the
> visual properties of that one link are always the same. In your case,
> you have:
> 
> #leftnav a {
>  display: block;
>  background-image: url(perry_images/white.gif);
>  color: #2e86c0;
>  text-decoration: none;
>  padding: 13px 5px 0 50px;
>  background-attachment: scroll;
>  background-repeat: no-repeat;
> }
> 
> So if you use the tutorial technique, you would set up a special
> selector:
> 
> #uberlink {
>  background-image: url(perry_images/blue.gif) !important;
> }
> 
> 
> Then you would take the link that you want to afect and give it that
> ID.
> 
> <li><a href="/about-us.shtml" id="uberlink">About Us</a></li>


______________________________________________________________________
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