I have a simple blog that I created using Frontpage 2000.
There is a heading row for the Masthead - and then 3 columns below. I would like for the two outer columns to be %26quot;fixed%26quot;, so that if I make changes in these two columns on the index page - the same changes will be applied to all the pages.
Is this possible?
Thank you in advance.Frontpage 2000 help needed?you can you frames
%26lt;html%26gt;
%26lt;frameset cols=%26quot;25%,50%,25%%26quot;%26gt;
%26lt;frame src=%26quot;frame_a.htm%26quot;%26gt;
%26lt;frame src=%26quot;frame_b.htm%26quot;%26gt;
%26lt;frame src=%26quot;frame_c.htm%26quot;%26gt;
%26lt;/frameset%26gt;
%26lt;/html%26gt;
check out this http://www.w3schools.com/html/html_frame鈥?/a>
=============================
if you have a server and using scripting programming, you'll have to make your outer columns include files. you'll have to cut your page into sections, for example any page will looks like this:
%26lt;!-- Include File = %26quot;header.html%26quot; --%26gt;
%26lt;!-- Include File = %26quot;left_nav.html%26quot; --%26gt;
%26lt;div%26gt;
your page content
%26lt;/div%26gt;
%26lt;!-- Include File = %26quot;right_nav.html%26quot; --%26gt;
%26lt;!-- Include File = %26quot;footer.html%26quot; --%26gt;
header.html should contain opening html, header and body tags:
%26lt;html%26gt;
%26lt;head%26gt;
%26lt;title%26gt;my page%26lt;/title%26gt;
%26lt;/head%26gt;
%26lt;body%26gt;
%26lt;div%26gt;
%26lt;div%26gt;logo and header nav%26lt;/div%26gt;
left nav:
%26lt;div style=%26quot;float:left%26quot;%26gt;
- nav item 1%26lt;br%26gt;
- nav item 2%26lt;br%26gt;
- nav item 3
%26lt;div%26gt;
right nav:
%26lt;div style=%26quot;float:left%26quot;%26gt;
- nav item 1%26lt;br%26gt;
- nav item 2%26lt;br%26gt;
- nav item 3
%26lt;div%26gt;
footer: should contain any footer links and it should close the document:
%26lt;div%26gt;footer links, copyright%26lt;/div%26gt;
%26lt;/div%26gt;
%26lt;/body%26gt;
%26lt;/html%26gt;
now if you put all of these together you should have one complete document.