stop the left frame from changing size, when window is resized.

G

Guest

how can i have both frames change together when the window is resized, but
still have the contents, wrap to next line.

thanks

below is the code i have at the monent



<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>

<!--Main Frameset-->
<frameset rows="*" frameborder="no" framespacing="1" >
<frameset cols="20%,*">
<frame src="menu.html" name="menu_frame" marginwidth="0" marginheight="0"
noresize>
<frame name="right_frame2" src="index2_rightside.html">
</frameset>
</frameset>
</frameset>
<noframes>
<body>

<p>this is no frames page</p>

</body>
</noframes>
</html>
 
S

Steve Easton

Remove noresize from

<frame src="menu.html" name="menu_frame" marginwidth="0" marginheight="0" noresize>


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
G

Guest

still does it when i resize the whole window, the left frame is resizing and
text goes out of view, and the scroll bar show to scroll to view the text.

i want to have it as though there is not a left frame, and resizing the
whole window keeps the left hand side still and in view.
if that makes sense?

but i need to have a frame as it is the menu frame, and the right hand is
the target frame for the menu frame


hope you understand what i mean.


Jason
 
R

Ravi Anguluri

Hi,

Remove the % next to 20 in '<frameset cols="20%,*">'. This will set the
frame to a fixed col size.

Hope this helps


Regards

Ravi Anguluri
MSFT

This posting is provided "as is" with no warranties and confers no rights
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top