Markus: Scrollen im Frameset

Beitrag lesen

Hy!

Also, das ist die "frames/frameset.htm":

<html>
<head>
</head>
<frameset framespacing="0" border="0" rows="185,*" frameborder="0">
<frame name="head" scrolling="no" noresize src="head_frameset.htm" marginwidth="0" marginheight="0">
<frameset cols="150,*">
<frame name="navi" target="main" src="../navigation.htm" marginwidth="0" marginheight="0" scrolling="no" noresize>
<frame name="haupt" src="main_frameset.htm" marginwidth="0" marginheight="0" scrolling="no" noresize>
</frameset>
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>

Dann ist der Header wieder unterteilt in ein Frameset (head_frameset.htm), und zwar:

<html>
<head>
</head>
<frameset framespacing="0" border="0" cols="790,*" frameborder="0">
<frame name="header" marginwidth="0" marginheight="0" scrolling="no" noresize src="header.htm">
<frame name="header_rechts" marginwidth="0" marginheight="0" scrolling="no" noresize src="main_rechts.htm">
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>

Und der Mainframe ist auch wieder unterteilt (main_frameset.htm):

<html>
<head>
</head>
<frameset framespacing="0" border="0" cols="640,*" frameborder="0">
<frame name="main" target="_self" marginwidth="0" marginheight="0" scrolling="no" src="../main.htm">
<frame name="main_rechts" marginwidth="0" marginheight="0" scrolling="no" noresize src="main_rechts.htm">
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>

Danke und Gruss, Markus