PDA

View Full Version : frames


jpatriar
04-17-2003, 02:45 PM
Hi,
took a year+ off from it, so I'm brain dead again and all my links are old and my hardcopies lost.

I need basic frame/frameset code to:
add a:
1:vertical left navigation frame:(for links)
2:a top horz header frame (for logo etc..)
3:a bottom horz footer frame (for just a copy of the left vert links)
since I got about 5 pages of text I wanted to keep the logo and bottom links and left nav stuff and just update the middle of the page after a link is clicked. Instead of a viewer scrolling down a huge page of text, I want to add a previous/ next button on each page. I can get the left and top frames
but can't get the 3 rd frame to align at the bottom.

thanks


-----------------header fame-------------
----------------------------------------------

vert nav frame |
|
| (body copy here)

-----------------footer frame -----------
-------------------------------------------- -

sage45
04-17-2003, 05:22 PM
Possibly something like:


<FRAMESET ROWS="10%,80%,10%" FRAMEBORDER="NO" FRAMESPACING="0">
<FRAME SCROLLING="NO" NORESIZE FRAMEBORDER="NO" SRC="hder.htm" NAME="hderframe">
<FRAMESET COLS="25%,75%" FRAMEBORDER="NO" FRAMESPACING="0">
<FRAME SCROLLING="AUTO" FRAMEBORDER="NO" SRC="vtnav.htm" NAME="vtnavframe">
<FRAME SCROLLING="AUTO" FRAMEBORDER="NO" SRC="bcopy.htm" NAME="bcopyframe">
</FRAMESET>
<FRAME SCROLLING="NO" NORESIZE FRAMEBORDER="NO" SRC="fter.htm" NAME="ftrframe">
</FRAMESET>
<NOFRAMES>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#000000" VLINK="#000000" ALINK="#000000">
</BODY>
</NOFRAMES>
</HTML>


HTH,

-sage-

jpatriar
04-17-2003, 09:16 PM
Hi sage,
Very Cool, thanks.
didn't actually plug any of my html files in
but the frames seem to line up right where I want, when I run as is.
thanks
again