Forum Moderators: open
I want to add a menu at the bottom of my Home Page "index.html" and I have allocated one Row specifically for this purpose.
Then I created a page called "menu.html" which includes all the Links as per the following html:-
<body>
<a href="index.html">Home Page</a> <a href="about.html">About Us</a> <a href="content.html">Content</a>
</body>
My question is, what basic Command do I need to use to get the "menu.html" page to appear in the bottom Row of my Home Page? without having to type all the <a href...............etc etc in the html on every single page?
Thanks.
<iframe src="menu.html" name="menu" scrolling="no" frameborder="no" align="center" height="25" width="100%"></iframe>
balinor
Yup, that is the kind of thing that I am looking for - is this "frames"? My site currently uses html and css only as I read that "frames" is not a good idea because the bots don't like it. But it is on the right theme.
Now back to the Netscape 4 workaround. N4 uses the 'layer' command instead, so when setting up your iframe it should look like this:
<iframe src="menu.html" name="menu" scrolling="no" frameborder="no" align="center" height="25" width="100%"><layer src="menu.html></layer></iframe>
Sorry, should have put that in my original post!
<!--#include virtual="menu.inc"-->
The only disadvantage is that you may need to rename your files with an .shtml extension depending on your server's configuration (there are ways of getting round this, however).