Forum Moderators: not2easy
You could, however, make certain links visible/invisible using CSS by applying different classes to your links - but they would first need to be marked up in the HTML. Is that what you require?
...welcome to WebmasterWorld! :)
I just want to add a link to all my pages and looks like I have to do just that.
You could use JavaScript (although you mention 'without scripting'), but the link wouldn't be spiderable by search engines nor available to those without scripting enabled. Or use server-side scripting such as PHP to add common elements to your pages. The end result is an HTML link on the page. Either way you'd still probably have to go through and modify every page anyway in the first instance.
[edited by: Imanamateur at 3:04 pm (utc) on Oct. 28, 2007]
As for PHP (and other) you could have a look here...
[w3schools.com...]
Very simplified, substitute your own navigation code:
<p align="center">
<a class="nav" href="http://www.example.com">Home</a> ¦
<a class="nav" href="http://www.example.com/page2.html">Page 2</a> ¦
<a class="nav" href="http://www.example.com/page3.html">Page 3</a>
</p>
That will be what's in navigation.php file. Then you "call" the include where you want the navigation to appear on the pages instead of the code on the page now. Like this:
<?php include ("includes/navigation.php");?>