Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

html page problem!!!

Status
Not open for further replies.

paragvshah

Programmer
Jan 11, 2001
109
IN
Hi friends,

I have created a website containing top,left,right,bottom & main frame (5 frames).Top, left & right frame contains .SWF files (i.e. flash files), bottom frame contains ticker tape while main frame contains information. The problem is that when we open the page it opens to maximize but when we bring the page to restore mode then mainframe dissappears & only top, left, bottom & right frames are visible & right frame comes towards left frame.

Please can anybody help me out?
 
I know that Netscape has a resizing bug... does that affect framesets as well, perhaps??
 
This is the source code. If you can help me Uladzik.

<html>
<head>
<title>
</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>

</head>

<frameset rows=&quot;478,21&quot; frameborder=&quot;no&quot; border=&quot;0&quot; framespacing=&quot;0&quot; cols=&quot;*&quot;>
<frameset rows=&quot;87,380*&quot; cols=&quot;*&quot; frameborder=&quot;no&quot; border=&quot;0&quot; framespacing=&quot;0&quot;>
<frame name=&quot;topFrame&quot; scrolling=&quot;no&quot; src=&quot;menu_top.htm&quot; >
<frameset cols=&quot;33,750*&quot; frameborder=&quot;no&quot; border=&quot;0&quot; framespacing=&quot;0&quot; rows=&quot;*&quot;>
<frame name=&quot;leftFrame&quot; scrolling=&quot;NO&quot; src=&quot;menu_left.htm&quot;>
<frameset cols=&quot;637*,110&quot; frameborder=&quot;no&quot; border=&quot;0&quot; framespacing=&quot;0&quot; rows=&quot;*&quot;>
<frame name=&quot;mainFrame&quot; src=&quot;menu1.html&quot;>
<frame name=&quot;rightFrame&quot; scrolling=&quot;no&quot; src=&quot;menu_right.htm&quot;>
</frameset>
</frameset>
</frameset>
<frame name=&quot;bottomFrame&quot; scrolling=&quot;NO&quot; src=&quot;ticker.html&quot;>
</frameset>
<noframes><body>
</body>
</noframes>
</html>
 
set the sizes in % not in pixels !!!! of course when there's no room to display a frame it's not displayed !
 
Make the top, left, right and bottom frames with PIXEL width (because I suppose you want those Flash animations to be fixed in size) and the middle with the percentage or &quot;*&quot;. With your current values there is just not enough space for the middle frame to appear. Bottom frame also &quot;disappears&quot; because again you use pixels.


---
---
 
&quot;Make the top, left, right and bottom frames with PIXEL width&quot; --> and if the size of the window is less than left+right (s)he won't see the middle frame anymore
don't use pixels if you want it to work for ANY size
or force users to have a *minimum* size ...
 
Don't use % use pixels!!!! websites look alot better using pixels!! :D

create a website using % and the same website using pixels!! resize the browser, you will see what I mean ;)



 
Hi, I'm having problems with Netscape and I whant to know how to get it right.

My problems is that Netscape doen't shows the complete tables, I mean, In netscape when a td doesn't have any text, it doesn't shows anything (even the backgroung), so if a have a background color for the page and another for the table the table doesn't looks like a complete rectangles.

In IE it looks perfect.

What can I do?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top