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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

problems with frames

Status
Not open for further replies.

goaganesha

Programmer
Joined
Dec 4, 2001
Messages
178
Location
BE
Hi,


I have a webpage with a top and a bottom frame.
The top frame has a fixed height of 120pixels. In this top frame I have a table with a height of 120 pixels. In this table there is a cell also with a height of 120 pixels. Frameborders are set to "no" and borderwidth is set to 0.
scroll is set to "no".
In the page properties dialog of each frame, left margin and top margin are set to 0 and margin width and height is also set to 0.

Why is it that when I put a picture with a height of 120pixels in that cell, the bottom part of the picture isn't visible when I preview in iexpl 6 or netscape 6.1.
In netscape 4.5 even more of the bottom is cut off.

Let me know if you need to see the HTML code.

regards, goaganesha
 
problem solved. I've set the bottomframe to relative.
 
OOPS I reacted too soon,

The problem is still there in netscape 4.5.
iexplorer6 and netscape 6.1 are fine.


Does anyone have a solution for this?

regards, goaganesha
 
thanks for your reply, here's the HTML



<html>
<head>
<title>.: vlaanderen bouwt vzw :.</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
</head>
<frameset rows=&quot;120,*&quot; frameborder=&quot;NO&quot; border=&quot;0&quot; framespacing=&quot;0&quot; cols=&quot;*&quot;>
<frame src=&quot;adrestop.htm&quot; frameborder=&quot;NO&quot; noresize scrolling=&quot;NO&quot;>
<frameset cols=&quot;165,*&quot; frameborder=&quot;NO&quot; border=&quot;0&quot; framespacing=&quot;0&quot;>
<frame name=&quot;leftFrame&quot; scrolling=&quot;NO&quot; noresize src=&quot;adresleft.htm&quot; frameborder=&quot;NO&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;>
<frame src=&quot;adrescontent.htm&quot; frameborder=&quot;NO&quot;>
</frameset>
</frameset>
<noframes>
<body bgcolor=&quot;#FFFFFF&quot; text=&quot;#000000&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;>
</body>
</noframes>
</html>


regards, goaganesha

 
Do you need to see the html of the topframe too?

regards, goaganesha
 
did u ever think that perhaps with the new versions you might need to add some extra room in your frames....remember ie and netscape will read your page differently....and also try not inserting a table (just put in your navbar as is) X-)

deeeeceee
 
Hi,

The weird thing is that if I change the size of my window, the piece that's being cut off becomes bigger and smaller.
This problem occurs only in netscape 4.5, not in 6.1 or internetexplorer 6.0




Here's the code for the topframe


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

<body bgcolor=&quot;#666666&quot; text=&quot;#000000&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;>
<table width=&quot;960&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;>
<tr>
<td width=&quot;760&quot; valign=&quot;top&quot; rowspan=&quot;2&quot;><img src=&quot;images/frames/top1.jpg&quot; width=&quot;760&quot; height=&quot;104&quot;></td>
<td width=&quot;760&quot; height=&quot;21&quot;></td>
</tr>
<tr>
<td valign=&quot;top&quot; height=&quot;83&quot;>&nbsp;</td>
</tr>
<tr>
<td valign=&quot;top&quot; height=&quot;16&quot;><img src=&quot;images/frames/top2.jpg&quot; width=&quot;760&quot; height=&quot;16&quot;></td>
<td valign=&quot;top&quot;><img src=&quot;images/frames/top2.jpg&quot; width=&quot;760&quot; height=&quot;16&quot;></td>
</tr>
</table>
</body>
</html>
 
sorry, i can't seem to recreate your problem with this code.

all the frames seem to layout nicely as far as i can see.

sorry i can't be more help.

ss
 
Thanks for your help.

Perhaps i shouldn't worry about problems with older browser versions.
regards, goaganesha
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top