Christian: Scrollbar farbe lässt sich nicht ändern

Beitrag lesen

Hi ich habe in einem Frameset folgenden Code eingetragen:

<style type="text/css">
<!--
body { background-color:#000000;
       color:#FFFFFF;
       font-family:verdana,helvetica,arial;
       scrollbar-base-color:#8C8CC6;
       scrollbar-3dlight-color:#FFFFFF;
       scrollbar-arrow-color:#FFFFFF;
       scrollbar-darkshadow-color:#000000;
       scrollbar-face-color:#8C8CC6;
       scrollbar-highlight-color:#FFFFFF;
       scrollbar-shadow-color:#000000;
       scrollbar-track-color:#ACACE6;
     }
//-->
</style>

Der Code funktioniert in einer anderen Datei (hab ich so von SelfHTML rauskopiert).

Mein Frameset sieht folgendermaßen aus:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>PHP Browser by Christian Weinkötz</title>
</head>
<frameset rows="60,*,40" frameborder="0" framespacing="0" border="0">
  <frame src="tmp/head.html" name="head" scrolling="no" noresize marginwidth="2" marginheight="2">

<frameset cols="25%,75%" frameborder="0" framespacing="0" border="0">

<frameset rows="60%,40%" frameborder="0" framespacing="0" border="0">
    <frame src="tmp/folder.html" name="folder" scrolling="yes" marginwidth="2" marginheight="2">
    <frame src="tmp/bookmark.html" name="bookmark" scrolling="auto" marginwidth="2" marginheight="2">
               </frameset>

<frame src="tmp/browser.html" name="browser" scrolling="yes" marginwidth="2" marginheight="2">
  </frameset>

<frame src="tmp/info.html" name="info" scrolling="no" noresize marginwidth="2" marginheight="2">
<noframes>
Seite kann nicht angezeigt werden.
</noframes>
</frameset>
</html>

Ist das Frameset vieleicht zu komplex? Bitte um Hilfe.