PDA

View Full Version : HTML Help


Ericd014
03-01-2007, 02:10 AM
Ok, what I need is a way to keep a sidebar and overhead bar/navigation bar thing, locked in place. I have tried the < sidebar > tag, but it doesn't work for some reason...I am working on a project that is due in like two days, and this is about all we have left. Any code that can keep the sides locked in place and the rest of the page scrollable, works fine with me. I don't have the files on my computer, they are all on my school's server. If you need it, I can get you the source code tomorrow.

darkthief
03-01-2007, 04:20 AM
http://www.lissaexplains.com/frames.shtml

Lovely site when i did HTML.

Dissidia
03-01-2007, 07:02 PM
<FRAMESET COLS="30%,70%">
<FRAME SRC="menu_frame.htm">
<FRAME SRC="content_frame.htm">
</FRAMESET>

etc.
HTML Goodies - Frame Tutorial (http://www.htmlgoodies.com/tutorials/frames/article.php/3479241) should have everything you need for that :)

II Xion II
03-01-2007, 09:49 PM
You need frames for sure. I had the same problem when I started with HTML, I wanted to mirror that effect but did not know how until I investigated further. W3Schools.com is a great place to learn many scripting and web-based languages, you should check it out.

Ericd014
03-02-2007, 03:08 AM
Thanks for the help guys.