Hiya all,
I've come up with a solution that might help others.
By using an .inc reference I can put all the menu items in one .inc file (I'm using an ASP page). So when I need to change any menu item I simply do it in the .inc file.
For example
my nav.inc file contains
Code:
<div id="tabs">
<ul>
<li id="current"><a href="Home.html"><span>Home</span></a></li>
<li><a href="Library.html"><span>Library</span></a></li>
<li><a href="Services.html"><span>Directorates</span></a></li>
<li><a href="Support.html"><span>Support</span></a></li>
<li><a href="News.html"><span>News</span></a></li>
<li><a href="About.html"><span>About</span></a></li>
<li><a href="About.html"><span>Help</span></a></li>
</ul>
<div id="topright">
<a href="accessability.html"><span>Accessibility</span></a>
<a href="search.html"><span>Search</span></a>
</div>
</div>
My page contains
Code:
<!--#include file="nav.INC"-->
I'm sure the masters may see down sides to this but Hey it works for me.
Cheers
Mark
Bookmarks