Thread: Frames help please!!
Results 1 to 3 of 3
Related
-
frames vs. css Forum: CSS Forum
Replies: 3 -
frames Forum: HTML Forum
Replies: 3 -
frames Forum: HTML Forum
Replies: 11 -
frames HELP-please? Forum: HTML Forum
Replies: 5 -
Frames Forum: HTML Forum
Replies: 2
-
07-11-2001, 12:51 PM #1
Frames help please!!
Ok all I want on my site is a sidebar on the left side. Except the sidebar loads in it's own window and not the main window. Could you help me fix the code so it loads in the main window and not the sidebar window? thx
this is the code I have so far:
<HTML>
<HEAD>
<title>FrameShop Output</title>
</HEAD>
<FRAMESET COLS="15%,85%">
<FRAME SRC="http://www.geocities.com/njm1987/sidebar.html" SCROLLING="AUTO" NORESIZE NAME="sidebar">
<FRAME SRC="http://www.geocities.com/njm1987/home.html" SCROLLING="AUTO" NORESIZE NAME="main">
<NOFRAMES>
To view this document, you need a frames-compatible browser such as
Netscape Navigator or Microsoft Internet Explorer.
</NOFRAMES>
</FRAMESET>
</HTML>
[This message has been edited by Green Cloud (edited 07-11-2001).]
-
07-11-2001, 02:29 PM #2
Hello, Welcome.
Your frame code is not the problem, the problem lies in this page -
http://www.geocities.com/njm1987/sidebar.html
In the <HEAD> ...</HEAD> of this document write -
<base target="main">
That way, all the links will open up in the large frame.
Hope that helps.
------------------
QuietDean-
-
07-11-2001, 02:57 PM #3
that worked great thank you
Last edited by HTML; 03-09-2012 at 09:08 AM.