Invasion of the Body Switchers

Since it was first released in 2001, Paul Sowden‘s Style Sheet Switcher has been downloaded and used by thousands of designers and developers and has spawned many client-side and server-side adaptations.

Article Continues Below

Having used Paul’s script on numerous projects, I began to wonder how style-sheet switching could be extended to give users even more choices or accessibility enhancements, so I turned to my good friend Brothercake to make my ideas a reality and Invasion of the Body Switchers was born.

Looking back at the original Style Sheet Switcher#section2

Fantastically simple in its implementation, Paul’s original script was not without its woes.

Anchors which trigger the switching functions are generally present in the mark-up, which is a problem if javascript is unavailable, and the # anchors commonly used are an unnecessary annoyance.

<a href="#" onclick="return false;">Switcher</a>

The original solution also relied on multiple style sheets, using <link/> elements and "stylesheet" / "alternate stylesheet" semantics – this adds extra server calls, but more importantly, it does not allow for different media styles to be selected independently of each other.

Wouldn’t it be fantastic if we could do this without any physical mark-up, using a single Javascript and CSS file? Wouldn’t it be even more fantastic if we could target different media types independently, and give users a simple UI from which to select their preferences, all saved into a cookie until changed?

Well now we can, enter the Body Switcher.

The concept#section3

Invasion of the Body Switchers is infinitely extensible, handling any number of options and media types, all from a single Javascript and CSS file. It works by adding one or more unique class names to the page’s <body> tag; styles are then defined using descendent selectors.

Our approach does require abandoning conventional "stylesheet" and "alternate style-sheet" semantics, but this doesn’t trouble me, because:

  1. Many browsers do not implement native style-sheet switching;
  2. Those that do, do not apply any persistence to a selected alternate stylesheet.

Making the menu#section4

Before we start, let’s take a peek at the final result.

If you download the files now, you can refer to them as we can go through each component:

The XHTML#section5

First include some empty switch containers, here I’ve used a <div> to contain the switcher:

<div id="screen-switcher"</div>

For each additional switcher you can add an extra container. For example, an additional switcher for print styles:

<div id="screen-switcher"></div>
<div id="print-switcher"></div>

Or even projection styles:

<div id="screen-switcher"></div>
<div id="print-switcher"</div>
<div id="projector-switcher"></div>

Switching tools are created into these containers only if scripting is available, leaving semantically neutral, empty containers when it’s not.

The script#section6

Customisation of the script is very simple. First create a new switching form – defining the id of its container and the label text:

var screenSwitcher =
	new bodySwitcher(
	'screen-switcher',
	'Screen styles'
);

Then you can add any number of classes and their labels, to apply to this switcher control:

screenSwitcher.defineClass('default','Normal contrast');
screenSwitcher.defineClass('high','High contrast');

Adding new media types#section7

To give a user the choice between different print styles without affecting screen presentation, add print options to the script.

var printSwitcher =
	new bodySwitcher(
		'print-switcher',
		'Print styles'
	);
printSwitcher.defineClass(
	'default','Default'
);
printSwitcher.defineClass(
	'small-sans','Small sans'
);
printSwitcher.defineClass(
	'large-serif','Large serif'
);

Additional media types can also be included, for example for hand-held or projection devices.

var projectionSwitcher =
	new bodySwitcher(
		'projection-switcher',
		'Projection styles'
	);
etc.var handheldSwitcher =
	new bodySwitcher(
		'handheld-switcher',
		'Handheld styles'
	);
etc.

The only restriction is that every class name must be unique, even across different media types.

The style sheet#section8

A single style sheet can contain all the options and media types selectable by the user.
Any CSS rules may be applied to this style-sheet, simply by using descendent selectors from the additional <body> class names we talked about earlier.

Example screen styles#section9

@media screen
{
	body {
		background : #fff;
		color : #666;
		}body.high {
		color : #000;
		}body.highvisibility {
		background : #000;
		color : #ff0;
	}
}

Example print styles#section10

@media print
{
	body {
		font: 100% "Lucida Sans Unicode",verdana,sans-serif;
		}body.small-sans {
		font: 80% "Lucida Sans Unicode",verdana,sans-serif;
		}body.large-serif {
		font: 120% "Times New Roman",times,serif;
	}
}

Additional media styes can also be added as required.

@media projection {
	etc.
} @media handheld {
	etc.
}

Styling the switcher controls#section11

The switcher controls are made from accessible, semantic mark-up and can be styled according to any site design.
Here is what the HTML looks like for each control; I’ll leave the styling up to you.

<form acti>
	<fieldset>
		<label for="select-screen-switcher">
		<span>Screen styles</span>
		<select id="select-screen-switcher">
		<option value="default">Normal contrast</option>
		<option value="high">High contrast</option>
		<option value="highvisibility">High visibility</option>
		</select>
		</label>
	</fieldset>
</form>

And that about wraps it up#section12

That’s it! Take another look at the final result – a modern style sheet switcher which enables independent switching of different media types, and gives users much greater control over the output of your web pages.

This principle is infinitely extensible, so you could break it down further into individual preferences for fonts, colors, layout or orientation.

Except for the caveat#section13

Invasion of the Body Switchers does not work (but is gracefully degraded) in Mac/IE5.

Andrew Clarke

Andrew Clarke is an art director and web designer at the UK website design studio Stuff and Nonsense. There he designs websites and applications for clients from around the world. Based in North Wales, Andrew’s also the author of two web design books, Transcending CSS and Hardboiled Web Design, and is well known for his many conference presentations and over 10 years of contributions to the web design industry. Jeffrey Zeldman once called him a “triple talented bastard.” If you know of Jeffrey, you’ll know how happy that made him.

88 Reader Comments

  1. A very welcome return for ALA and Zeldman.com
    … Great tutorial, as ever.

    You were missed by us all!

  2. It is great to see another article on ALA.

    I hate to be a killjoy but aren’t style switchers better done server side? I can’t really see the point of doing it with JS when is so easy in PHP.

    Oh well thanks for the great article!

  3. @ Mark Wubben: Driving today huh? 😉 There will be updates to memory leak soon on either Cake’s site (http://www.brothercake.com) or/and my own (http://www.stuffandnonsense.co.uk). Plus there is also an update for when you don’t wish to include the switcher controls on every page (as on my company site (http://www.malarkey.co.uk)

    @ Paul “the tree” Carpenter: Personally I feel that style-switchers are profoundly client-side solutions, but look out for a PHP and ASP version in the next few weeks. 😉

  4. >Sorry but you’re missing a point here – If
    >*you* have a standard naming convention then
    >you can put them what you want; but *I* (as the
    > script) have no idea what your page looks
    >like. I can’t put them just anywhere – I can
    >only put them where you tell me

    Pretty much agreed. I would however, use a small custom script per project in this case.

    You are correct in saying the script has no idea what the page has. However, the page, and markup should really have nothing to do with, or knowledge of the scripts in use other than a reference to them (or a few key variables defined at page level at worst).

    As I said before, its a fine line :). How many ways can you skin a cat?

    If I add this script do i have to change the header section of my site, or the body content and header section of each individual page?

    I’m glad the crap IE specific stuff is not required. It erks me that it was ever invented/implemented.

  5. Very good article!

    We’re nearing the day when display content and style will be user preference and less server dependent. As feed standards like RSS and Atom evolve and ontologies like RDF and OWL gain acceptance, the web will be a much more fluid experience combining knowledge, content and stype at the desktop.

  6. Great technique – thanks for the article.

    (Brian – you need to print the page and view the page in a browser with a projection to see the effect of the second and third dropdowns.)

  7. As everyone else I’m very happy to se ALA back in business. And what a great article 🙂

    Your technique (slightly modified) will save a project I’ve been working on (on and off) for the last year. The project is almost finished except for a couple of strange bugs in Safari we havn’t been able to solve. But you have. Thank you for that.

    I will need to create a variant that loads several css-files to make it work. The main reason for this is as someone else stated, maintainance problems on small sites that grow big. As a principle we also organise small sites the same way as big ones.

    And great of you to provide a garbage collector. Its easy to write one but if you’re not familiar with the concept as most web-programmers seems not to be its easy to walk into a prorietary-code-trap.

    So, great job and if you beat me on the multifile thing I’ll probably use your stuff for that to.

  8. @ Rasmus: A multi-file option, along with a raft of other enhancements are on there way.

    @ All: I personally would be very interested to see how/if this thing is being used in the wild. If anyone has examples, would you post them or send me a link?

    Have fun

  9. I Like it although I’m a little troubled by 2 things. (nothing to do with the code or the mark up of course :-)). 1). It lets the browser designers off the hook in coaxing them to adopt the ‘built into the browser’ style sheet switching that works so elegantly when done right. 2). It also means that you have to have form elements on your page where you might not want them. It still represents a move forward though..

    Robert

  10. This is a great technique, even better (or so it seems) than the original switcher idea. Thank you so much…

    …but is it possible to make it even more flexible?

    What I want to do, is set this up so that the first selector sets a “theme” for a page (with the page changing ala Zen Garden) and a second that sets “visibility” for menus and content (changing text size and backgrounds perhaps).

    Maybe the second selector would alter the value of an “interior DIV”, so that statements in the CSS might be something like…

    body.theme1 {

    body.theme1 largeText{

    body.theme1 highContrast{

    body.theme2 {

    body.theme2 largeText{

    …and the second and third values would only be applied if the second selector was set to “largeText” or “highContrast”.

    I’m still a beginner with CSS, so I’m not quite cluey enough work out the syntax, but I can see the possibilities. What a great way to make websites more flexible and accessible!

  11. I was reviewing previous comments and noticed that some people were worried about huge and unwieldy CSS files if ALL the coding is placed into one file.

    I wanted to see if it had to or not, as well. I’m about to reconstruct several sites of mine into one big homesite, and wanted to keep the styles I’d developed so that users could pick any style they wanted. I didn’t want to put all the coding into one CSS file either.

    However, the following is quite simple and seems to work on my browser (Maxthon, an IE overlay). In the HTML page, change the style links to something like:

    Then, in theme1.css you have coding like…

    @media screen {
    body.theme1 {…}
    body.theme1 a { color : #fff;}.
    .
    .
    .
    }

    …and in theme2.css you have something like…

    @media screen {
    body.theme2 {…}
    body.theme2 a { color : #000;}.
    .
    .
    .
    }

    …and that’s it. See, all the code can be kept as separate as you want.

  12. Even with your solution, Laura, the user still ends up loading all the styles that they may never use… imagine if you went to the zengarden and downloaded hundreds of stylesheets before the default one appeared! Obviously, there it’s a server-side solution, not a javascript trick, but the idea remains: only download the content the user wants.

    Although this is cool, I still maintain that it has no real place outside of a nifty effect on portfolio blogs. Yes, Wired does it, but I don’t think corporate sites are suddenly going to be jumping on the bandwagon with on-page font controls.

    As above, this has the most potential as a way to control something like colours or ‘what to print’ on a page. For example, an on-page tickbox could switch all text to black in the print-stylesheet, making for a much higher quality output.

  13. I can see now that you’re right, in that the technique is best used for small variations, rather than major ones, and swapping in whole stylesheets is better done using the original switcher.

    Thinking about the problem this morning I realised that there might be another way of doing this. On reflection, the advantage of using the original technique is that all the definition of which styles are used, and how the list is presented, is kept in the one javascript file, and not in the actual webpages, where they’d have to be updated manually. So only one or two files are altered, instead of who knows how many.

    Why not have the javascript just reset which stylesheet file is loaded (or reloaded with the refreshed page)? After all, if the whole switcher box code is generated from javascript on the fly, couldn’t the style declaration also be? That way, you only have one stylesheet loaded at any one time.

  14. “Pretty much agreed. I would however, use a small custom script per project in this case.”

    Not worth it. Consider the weight of that vs the customization of adding a simple, empty

    .

    As for examples in the wild… mayhaps soon. This done mused me good. 🙂

  15. While re-reading the comments, Laura’s in particular, I was struck by an idea that might work, can’t you have a main css file to use this technique, and then

    @media screen {
    import url(“style1.css”);
    }

    @media screen {
    import url(“style2.css”);
    }

    If you want to offer multiple CSS files. The only draw back is these CSS files still need the classes that must be appended to make this script work, or can this script be reworked so that it disables the styles from one style-sheet when the new one is enabled? If that were possible, then it would also be usefull to then include the other pages as alternate style sheets for UAs like Mozilla and Opera that offer the ability to change the style.

    Hmm, this may not be as usefull as I originally thought it might be…

  16. >> Pretty much agreed. I would however, use a
    >> small custom script per project in this case.

    > Not worth it. Consider the weight of that vs > the customization of adding a simple, empty

    .

    Of course its worth it. Simple concepts of programming are seperation of business logic from content from layout.

    If you put the divs in the page you are semi merging business logic and layout and content all into the html. BAD BAD BAD. Sure its “easier” short term.

    What happens if you have 4500 pages in an intranet, perhaps using 100 or so templates.
    What happens if I need to add another div?

    What happens if I want to update my script on 2 projects that both have 4500 pages, and a few hundered templates?

    Thats a lot files to change to add, modify or remove the solution, rather than a 1 program script, and 1 program insertion script.

    Remember the KISS principle. If you enforce seperation … then everything “theoretically” should be simple (and is 9/10 times). The important thing is to keep architecture ideas simple. Nitty gritty, and specific implementation can be complicated, but stick to the basic concepts.

  17. (It doesnt have to be an intranet.. not sure why i put that as the example above, especially since… bandwidth is generally a lot more generous, and browsers are more controlled in those environments. It could be any site, a large corporate with a few thousand pages whatever :)).

    I have some rather strong opinions on these types of things (which may well blind my common sense, but im not sure :)) because iv spent the last 2 years “rearchitecting” solutions to be more manageable/upgradeable (on all tiers).

    It’d be great to be able to write something new :).. ill have to bug my employer =]

  18. Works fine in Safari 1.2.3. When Javascript is switched off, the text “To see the effects of print media switching…” is visible even when the dropdown menu does not exist. This is of course the test page only, but maybe you could add a “document.write” for adding text and other related things that make sense only when Javascript is available, so they would not be rendered at all when JS is off.

  19. found an example of a switcher used by one of Australias largest news papers.

    http://www.theage.com.au

    It works for me 🙂

    Im not a fan of the specific implementation (hard coding in the controls), but the functionality is there.

  20. @Mike Purvis – well it is kind of a niche thing at the moment, but there are lots of uses beyond straight design switching. There are the print controls you mentioned; there could be buttons for changing screen fonts, or controlling the output and layout of a web mail interface; there could be projection media options that turn a website into a slideshow at various formats. These are the kind of things I ultimately had in mind, but whether any of them will become mainstream things, I don’t know …

    @Laura, Seth and Brian — I think there is mileage in that idea. The first step would be restricting the include format to elements, one for each media or switcher control, and named by the same naming convention, something like this:

    Then the script can dynamically reload the stylesheet in each link as its changed – so the option “high-visibility” equates to a stylesheet called “screen-switcher-high-visibility.css”

    Now whether the BODY classname paradigm would still be required … I’m not sure, possibly not. Find out when I try it …

    The bottom line is – yes, multi-sheet loading capability is absolutely necessary, and will be forthcoming. I’ll post a prototype on this thread before release, if that would helpful? So you can see if it meets your expectations.

    @Ned — I don’t understand what the big problem is with these empty divs. You don’t have to have them. They’re optional – not required. All you need is an element into which to append the switcher control, but that can be anything – it can be an element that’s already there.

  21. It’s a shame you’ve abandoned the one thing that made the original switcher such a great piece of work – the standards upon which the switcher was built.

    The original switcher can be adapted to fix many of the problems you have highlighted such as using A tags, see http://jon.dowland.name/ for an example.

  22. > The original switcher can be adapted
    > to fix many of the problems you have
    > highlighted

    It can’t be adapted to support multi-media capability, because the semantics have no scope for it, and that’s why we had to abandon it.

    If there is a way to acheive this without abandoning those semantics, I’m very happy to hear about it ..

    Nonetheless, the multi-sheet version that’s coming next will have the capability to use alternate stylesheet semantics for one chosen media type, if you wish.

  23. @James: What I’m trying to say is that addition of the script to a large project would be tedious UNLESS you were creating the containers on the fly. At the moment, you backout if they dont exist.

    These could be created with a custom “insertion” script that says, “ok, regardless of the markup, I’m going to add these controls to the page in the “such n such” container” (and if the container doesnt exist, you make one on the fly).

    Do not depend on markup.

  24. @ Ned Collyer: Ned, the latest version of the script posted at the links above may resolve your issues.

    As we have implemented it at http://www.malarkey.co.uk, we have the switcher controls on only one ‘customise this site’ page. Then, we included just the script on the other pages (no switching controls) and voila.

  25. And it may well be me …. but it’s like this:

    When you create an element in the DOM you have to append it somewhere. Where do you append it, if not to an element with a named ID?

  26. Thats the “custom insertion script” (per project) 🙂
    (Different locations for different markup = custom script for the project to determine location, or which div, where needs to be appended).

    Currently, the implementation is IN the source file. The implementation also depends on the markup. Hence, the JS source depends on the markup.

    The implementation should be seperated from your source (different file), so that either can be modified in isolation.

  27. Nice article … but I still do prefer CSS-only (no-JS) solutions, since I can’t see any reason for not including alternate styles in the HTML markup.

    RE: Firefox…
    The @media=print style can be seen, if you change the choice in the drop down and then choose File Print Preview.

    Nice to have ALA back 🙂

  28. @Ned – no, the implementation does not depend on the markup. The JS has a single variable (an argument passed to the object) by which you specify where to put the switcher control. If you want that value determined by the result of another process, that’s up to you, but the script itself is fine.

    @Fritz – because there’s no way to select those alternate styles for more than one media indendently.

  29. Sorry, because my last comment reads a little pissy.

    What I mean is that, although the script does have a dependence to the structure of the markup – it wants there to be an element with a named ID, or not, with no in between judgement – that’s as good as a generic script can ever be.

    If you want to modify it for your needs to make structural judgements, that’s cool, but it’s way beyond the scope of the core script – it would take a ridiculous amount of code, almost a whole meta-language, just to describe how it makes these judgements, and it would still get it wrong most of the time.

    As I’m sure you appreciate, writing scripts for other people to use is completely different from writing something for your own site. You can second-guess yourself, but I can’t second guess everybody.

    Ultimately, there has to be a point of distillation – a place where you tell the script what to do for a certain decision it can’t make itself. There’s no way around that … and this is (one reason) why elements can have ID attributes at all.

  30. great article. after the first style switcher article, i used the same approach to implement color palette switching for a number of my projects. with a single click, the sites’ entire color scheme can change from half-a-dozen options. many thanks, ala. you help us not-so-creative people become more creative.

  31. I’m with you, Ned, I am. But I feel like you’re blinded by something here, not sure what… 😉 But considering your comments:

    “What happens if you have 4500 pages in an intranet, perhaps using 100 or so templates.
    What happens if I need to add another div?

    What happens if I want to update my script on 2 projects that both have 4500 pages, and a few hundered templates?”

    That sounds like a job solved by some smart template architecture, and a global include. 🙂 Yes, that of course doesn’t account for the situation where you spend two years salvaging a monster, but *nothing* is going to be easy in that situation! You’re fixing what makes slick implementations like this bothersome.

    Besides, somebody made a point about how you’d determine where to create these in the absence of the

    s… yes, you could do it programmatically, but then I think it goes beyond the scope of many ALA readers and developers in today’s world(myself included) which means it makes implementation more hunt-and-peck than plug-and-play. 🙂

    But believe me, I’m with you. I’m also learning to better realize how to make compromises for the greater good, and I think this is an example of that.

  32. Thanks for the clarification Malarkey… I haven’t tried using non-screen media types yet and so hadn’t experiend the limitations of the previous switcher.

    I look forward to a future revision which recaptures the LINK tags 🙂

Got something to say?

We have turned off comments, but you can see what folks had to say before we did so.

More from ALA

I am a creative.

A List Apart founder and web design OG Zeldman ponders the moments of inspiration, the hours of plodding, and the ultimate mystery at the heart of a creative career.
Career