kNiFE
09-21-2004, 04:08 AM
can you change the navigation menu on every one of your webpages by altering just one file? like css alters all your pages. by having your page "link" to the css file, is it possible to link content such as paragraphs or a navigation menu in a similar fashion? any help would be apreciated.
junkyarddog25
09-21-2004, 05:00 AM
yea you can do this, ive done it before but cant remember the specifics. make your menu in notepad, using html, but save it as a .txt file. the first thing under your body tag needs to be:
<!--#include file="NAMEOFFILE.txt" -->
i belive this is correct but im not sure
Tracey
09-22-2004, 01:16 AM
It's not working I probably didn't do it right.
Aaron S
09-22-2004, 01:26 AM
Frames always work.
yea you can do this, ive done it before but cant remember the specifics. make your menu in notepad, using html, but save it as a .txt file. the first thing under your body tag needs to be:
<!--#include file="NAMEOFFILE.txt" -->
i belive this is correct but im not sure
http://www.lissaexplains.com/html6.shtml#SSI
Aaron S
09-22-2004, 01:30 AM
yea you can do this, ive done it before but cant remember the specifics. make your menu in notepad, using html, but save it as a .txt file. the first thing under your body tag needs to be:
<!--#include file="NAMEOFFILE.txt" -->
i belive this is correct but im not sure
http://www.lissaexplains.com/html6.shtml#SSI
kNiFE
09-22-2004, 02:19 AM
I can't seem to get this code to work. I have my text document labeled "menut.txt". also what should i put in the text document? I want to make a sidebar with hyperlinks. all the code in the text document is as follows:
<html>
<body>
<br>
Navigation<br>
<a href="index.html" title="home">Home</a><br>
<a href="Links.html" title="Links">Links</a><br>
<a href="AboutUs.html" title="AboutUs">AboutUs</a><br>
<a href="FAQ.html" title="FAQ">FAQ</a><br>
<a href="Shop.html" title="Shop">Shop</a><br>
<a href="Tutorials.html" title="Tutorials">Tutorials</a><br>
<a href="Forum.html" target="_blank" title="Forum">Forum</a><br>
<a href="karlspage.html" target="_blank" title="my own personal page">Karls page</a><br>
</body>
</html>
thanks for the help with the code.