Re: New Website Feature
From: | Mark J. Reed <markjreed@...> |
Date: | Sunday, July 16, 2006, 20:45 |
On 7/16/06, David J. Peterson <dedalvs@...> wrote:
> This is useful to know. I'm not very web savvy at all, so if I hear
> of JavaScript that does something I want to do, I use it. However,
> if X can be done with or without JavaScript, I think it's useful to
> know that it should be done without, for maximum compatibility.
If you just link both stylesheets to your page with <link>, giving
each a different "title", the user will be able to choose which one to
use. In Firefox, they show up in the View->Page Style submenu.
E.g. these two lines in the head of your page:
<link rel="stylesheet" href="default.css" title="Default Colors"
type="text/css" />
<link rel="stylesheet" href="bw.css" tiltle="Black and White" type="text/css" />
Cause my View->Page Style submenu to sprout two options named "Default
Colors" and "Black and White".
--
Mark J. Reed <markjreed@...>
Reply