Forum Moderators: open
Here's the javascript switch function, css file links, and links that do the switch:
function changeSheets(whichSheet){
whichSheet=whichSheet-1;
if(document.styleSheets){
var c = document.styleSheets.length;
for(var i=0;i<c;i++){
if(i!=whichSheet){
document.styleSheets[i].disabled=true;
}else{
document.styleSheets[i].disabled=false;}}}}<style type="text/css">@import "/_n/s/blue_1.css";</style>
<style type="text/css">@import "/_n/s/aqua_2.css";</style>
<style type="text/css">@import "/_n/s/deep_3.css";</style>
<style type="text/css">@import "/_n/s/black_4.css";</style>
<style type="text/css">@import "/_n/s/purple_5.css";</style>
<style type="text/css">@import "/_n/s/blue_1.css";</style>
<a href="javascript:changeSheets(1)">switch 1</a>
<a href="javascript:changeSheets(2)">switch 2</a>
<a href="javascript:changeSheets(3)">switch 3</a>
<a href="javascript:changeSheets(4)">switch 4</a>
<a href="javascript:changeSheets(5)">switch 5</a>
I'd really appreciate the help and would be happy to make a donation to whoever helps me get this working properly.