Hi,
ich vermute mal, da ist der Scrollbalken, hätte aber für die eigentliche Anamnese gerne etwas Quellcode.
Okay, den CSS-Eintrag hast Du ja schon, trotzdem nochmal:
.head1 { font-family:"Arial"; color:#ffffff; background-color:#800000; }
.tree1 { font-family:"Arial"; color:#800000; background-color:#ccff99; }
Frameset:
<html>
<head>
<title>FrameSet</title>
<script type="text/javascript">
if(top.frames.length!=0) {parent.document.title=parent.tree.document.title;}
</script>
</head>
<frameset rows="*,60" bordercolor=#800000 framespacing="4">
<frame name="tax" src="frame_oben.html" target="tax">
<frame name="work" src="frame_unten.html" target="work">
<noframes></noframes>
</frameset>
</html>
die untere Frameseite ist noch nicht programmiert, es geht aber um die obere:
<html>
<head>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<title>frame oben</title>
<base target="_parent">
</head>
<body class="head1"><nobr><b>Überschrift</b></nobr>
</body>
<body class="tree1"><nobr>Text</nobr>
</body>
</html>