This *can* be done in CSS using the :after Psuedo-element (http://www.w3schools.com/css/css_pseudo_elements.asp) but the cross browser support for this is very poor and can't be relied upon.
This *can* be done with Javascript, but not all your uses will/can have javascript enabled so this can't be relied upon either. This *can* be done with frames, but there are accessibility/SEO problems with frames. The winning solution is to use server side scripting to insert the navigation markup into a document, for example, here's how it could be done in PHP. <html> <head> <title>my page</title> </head> <body> <?php include "navigation.html" ?> rest of content goes here... </body> </html> GypsiiRose Baptiste wrote: > Hello, > I tried searching the archives, but maybe I didn't have the right terms. I > would like to have the list-style navigation I'm building in a separate > page, and import it into all the pages in the site to make management > easier. The navigation is going to be a horizontal row of css based > flyouts. I'm imagining this gets done all the time, but I haven't come > across a tutorial for it anywhere. On the ones I've seen, the nav goes > directly in the page, which seems silly for a site larger than 3 pages! > Thanks in advance, > Rose > ______________________________________________________________________ > css-discuss [EMAIL PROTECTED] > http://www.css-discuss.org/mailman/listinfo/css-d > IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 > List wiki/FAQ -- http://css-discuss.incutio.com/ > Supported by evolt.org -- http://www.evolt.org/help_support_evolt/ > > > -- Futurate's site for the Their Reading Futures project has been nominated for a prestigious Jodi Mattes accessibility award. This is our second award nomination this year. See: http://www.futurate.com/?p=132 -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.392 / Virus Database: 268.7.0/345 - Release Date: 22/05/2006 ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/