"CJM" <cjm...@yahoo.co.uk> wrote in message
news:uPqe7gZLCHA.1596@tkmsftngp13...
> I have a site-wide style sheet for general style settings. At other points
> in my site, I link to additional style sheets that provide extra styling
> instructiins for special cases, eg. for menus.
>
> In my main CSS I have altered the style (colours) of scrollbars, and in
> basic pages the changes are reflected fine. However, in certain
> pages/frames, ie my outline menu frames, am left with the basic grey
> scrollbars.
>
> Attached are the two sheets in question; hexadex.css is the standard CSS,
> and hexmenu.css is the menu CSS.
>
> Each sheet is linked in the pages as you would expect:
>
> <link rel="stylesheet" href="Hexmenu.css" type="text/css">
> <link rel="stylesheet" href="Hexadex.css" type="text/css">
>
> So why are the scrollbars not changes in these pages? I can only assume
that
> the two CSSs clash in some way but I dont see how....
>
> Thanks in advance.
>
>
>
I have found the problem was the inclusion of the following DOCTYPE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
Needless to say, as an IE extension, this is not supported under the W3C
standard.
CJM
"Richard Mahoney" <rm.m...@NOSPAMntlworld.com> wrote in message
news:VzjZ8.237$5k6....@newsfep3-gui.server.ntli.net...
Yeah, I had similar problems on my site.
By changing it to Transitional, you can overcome most glitches because the
Strict one is very unforgiving.
</RM>