I have problem in using css style for colored scrollbars. If I add it to my regular html page it works, but I want the style to cascade or changing the color of the scrollbar for fifty pages each time is ridiculous.
I have two css formats.One is from
here is my intended frameset, which does not work:
- Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<HTML>
<HEAD>
<!--cascading style sheet for scrollbars on frame 2-->
<STYLE type="text/css">
BODY
{scrollbar-face-color: #ffffcc; scrollbar-shadow-color: #ff9966;
scrollbar-highlight-color: #ffccff; scrollbar-3dlight-color:#ff6600;
scrollbar-darkshadow-color: #cc9999; scrollbar-track-color: #ffffcc;
scrollbar-arrow-color: #cc6633}
</STYLE>
<TITLE>A simple frameset document</TITLE>
</HEAD>
<!--FRAMESET HAS COLORED SCROLLBARS-->
<FRAMESET rows="10%, 90%">
<FRAME src="nimenu.html"frameborder="0"scrolling="no">
<FRAME src="home.html"frameborder="0"scrolling="yes"
marginheight="0" marginwidth="0">
</FRAMESET>
<!--non-frames homepage access here-->
<![ %HTML.Frameset; [
<!ENTITY % noframes.content "(BODY) -(NOFRAMES)">]]>
<!ENTITY % noframes.content "(%flow;)*">
<!ELEMENT NOFRAMES - - %noframes.content;
-- alternate content container for non frame-based rendering -->
<!ATTLIST NOFRAMES
%attrs; -- %coreattrs, %i18n, %events --
>
<noframes><P>Click here for the index or the alternate<A href="home.html">
non-frame based version of the document.TO NORTHDAYS HOMEPAGE</A>
</noframes>
</FRAMESET>
</HTML>
<!--http://www.w3.org/TR/REC-html40/present/frames.html#h-16.2.2.2 plus CONFLICT2K.COM-->
The frameset is from the above address and the css is from Conflict2K.com.
I don't know what I am doing wrong, so does anyone have any suggestions?...
My web address displays my foolish beginnings- one home page with correct css application.
I so help someone has the compassion to assist.Life can be so frustrating!
Kind Regards,
Sue
[Edited, added code format]
UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; H010818)





