How would you like a script that enabled a user to turn off your CSS with a click of a link and return it just as easily? With this little script you can: In the <head> of your document: <?php if( $_GET['css'] != 'false' ) { ?> <link rel="stylesheet" type="text/css" href="mystyle.css" /> <?php } ?> PHP: And the Links: CSS: <a href="?css=false">OFF</a> - <a href="?css=true">ON</a> PHP: Easy enough to understand, the OFF link turns the CSS off and the ON button I think you can work out for yourself Simple huh?
why not just use a theme switcher? one with a blank css stylesheet? or even better just turn off css in firefox View > Page Style > None