HTML Tutorial


 /help/HTML Help Forum   FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
RegisterRegister - Not registered yet? Got something to say? Join HTML Code Tutorial!
Nested Frames and the noresize tag.
Post new topic   Reply to topic    HTML Help Forum -> HTML Frame
View previous topic :: View next topic  
Author Message
kyriani



Joined: 12 Nov 2005
Posts: 1

PostPosted: Sat Nov 12, 2005 9:03 am     Nested Frames and the noresize tag. Reply with quote

I created the following file in editpad:

<FRAMESET cols="100,*">
<frame src="bmarklist.htm">
<FRAMESET rows="50,*,100">
<FRAME SRC="add.htm" TITLE="Menu">
<FRAME SRC="main.htm" TITLE="Content">
<frame src="advert.htm" noresize>
</FRAMESET>
</FRAMESET>


It works pretty much as intended, but both the bmarklist frame and the advert frame won't resize. If I remove the noresize tag, then I can resize either of them. This happens in both IE and Firefox.

How do I get the bmarklist frame to resize?
Corey Bryant
Site Admin


Joined: 15 May 2004
Posts: 8748
Location: Castle Pines North, CO USA

PostPosted: Sat Nov 12, 2005 2:46 pm     Reply with quote

I think this might be what you are trying to do
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
   "http://www.w3.org/TR/html4/frameset.dtd">
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>

<frameset rows="100,*">
   <frame name="bmarklist" scrolling="no" noresize target="main" src="bmarklist.htm">
   <frameset cols="50,*,100">
      <frame name="add" target="main" src="add.htm" scrolling="auto">
      <frame name="main" src="main.htm" scrolling="auto">
      <frame name="advertise" src="advert.htm" scrolling="auto" noresize target="_blank">
   </frameset>
   <noframes>
   <body>

   <p>This page uses frames, but your browser doesn't support them.</p>

   </body>
   </noframes>
</frameset>

</html>
Display posts from previous:   
Post new topic   Reply to topic    HTML Help Forum -> HTML Frame All times are GMT - 8 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
HTML Help Archive
Powered by phpBB © 2001, 2005 phpBB Group
HTML Help topic RSS feed 

 
DARFUR
HOSTING / DESIGN
MAKE MONEY

Home
  |   Tutorials   |   Forum   |   Quick List   |   Link Directory   |   About
Copyright ©1997-2002 Idocs and ©2002-2007 HTML Code Tutorial