X-Tream
05-28-2011, 03:34 PM
1) Script Title:
Style Sheet Switcher (v1.1)
2) Script URL (on DD):
http://www.dynamicdrive.com/dynamicindex9/stylesheetswitcher.htm
3) Describe problem:
This is pretty hard to explain, but the problem is this:
When you go to my site:
http://netti-tv.net ( Language is Finnish. )
you will see under the "keskustelu" navigation, a link saying "Valitse Teema". When you press it it pop ups with different colors. Now lets say you press the red one. It works as it should in all of the other pages except my forum ( by pressing "keskustelu" it will take you there ) First it starts loading with the correct color, but after it has loaded, the site the color changes back to orange...
Now when you choose a color from the forum, lets say blue, and press "Etusivu" ( index.html ) it works like it should. It changes the color etc. Now the problem is that it only works one way. You can only change the color from the forum, if you want it to work with all of your pages...
I hope you guys understand the problem... (:
Now for the codes what I have been using:
index.html:
<html><head>
.
.
.
<link rel="stylesheet" type="text/css" href="tyyli.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="punainen" href="punainen.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="sininen" href="sininen.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="vihrea" href="vihrea.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="pinkki" href="pinkki.css" />
<script src="styleswitch.js" type="text/javascript">
/***********************************************
* Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
</script>
.
.
.
</head><body>
.
.
.
<div id="teema1"><a href="javascript:chooseStyle('none', 60)" checked="checked"></a></div>
<div id="teema2"><a href="javascript:chooseStyle('punainen', 60)"></a></div>
<div id="teema3"><a href="javascript:chooseStyle('sininen', 60)"></a></div>
<div id="teema4"><a href="javascript:chooseStyle('vihrea', 60)"></a></div>
<div id="teema5"><a href="javascript:chooseStyle('pinkki', 60)"></a></div>
.
.
.
</body></html>
Forum: (header)
<html><head>
.
.
.
<link rel="stylesheet" type="text/css" href="http://netti-tv.net/tyyli.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="punainen" href="http://netti-tv.net/punainen.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="sininen" href="http://netti-tv.net/sininen.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="vihrea" href="http://netti-tv.net/vihrea.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="pinkki" href="http://netti-tv.net/pinkki.css" />
<script src="http://netti-tv.net/styleswitch.js" type="text/javascript">
/***********************************************
* Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
</script>
.
.
.
</head><body>
.
.
.
<div id="teema1"><a href="javascript:chooseStyle('none', 60)" checked="checked"></a></div>
<div id="teema2"><a href="javascript:chooseStyle('punainen', 60)"></a></div>
<div id="teema3"><a href="javascript:chooseStyle('sininen', 60)"></a></div>
<div id="teema4"><a href="javascript:chooseStyle('vihrea', 60)"></a></div>
<div id="teema5"><a href="javascript:chooseStyle('pinkki', 60)"></a></div>
.
.
.
</body></html>
( Thats only the important parts of the code...if you want to see the rest of the code just go to my site and check it (: )
So as you can see the only difference is that the code has "http://netti-tv.net/"...I just have no idea how to fix this problem...I hope someone can help me. It would mean a lot for me. (:
Style Sheet Switcher (v1.1)
2) Script URL (on DD):
http://www.dynamicdrive.com/dynamicindex9/stylesheetswitcher.htm
3) Describe problem:
This is pretty hard to explain, but the problem is this:
When you go to my site:
http://netti-tv.net ( Language is Finnish. )
you will see under the "keskustelu" navigation, a link saying "Valitse Teema". When you press it it pop ups with different colors. Now lets say you press the red one. It works as it should in all of the other pages except my forum ( by pressing "keskustelu" it will take you there ) First it starts loading with the correct color, but after it has loaded, the site the color changes back to orange...
Now when you choose a color from the forum, lets say blue, and press "Etusivu" ( index.html ) it works like it should. It changes the color etc. Now the problem is that it only works one way. You can only change the color from the forum, if you want it to work with all of your pages...
I hope you guys understand the problem... (:
Now for the codes what I have been using:
index.html:
<html><head>
.
.
.
<link rel="stylesheet" type="text/css" href="tyyli.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="punainen" href="punainen.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="sininen" href="sininen.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="vihrea" href="vihrea.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="pinkki" href="pinkki.css" />
<script src="styleswitch.js" type="text/javascript">
/***********************************************
* Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
</script>
.
.
.
</head><body>
.
.
.
<div id="teema1"><a href="javascript:chooseStyle('none', 60)" checked="checked"></a></div>
<div id="teema2"><a href="javascript:chooseStyle('punainen', 60)"></a></div>
<div id="teema3"><a href="javascript:chooseStyle('sininen', 60)"></a></div>
<div id="teema4"><a href="javascript:chooseStyle('vihrea', 60)"></a></div>
<div id="teema5"><a href="javascript:chooseStyle('pinkki', 60)"></a></div>
.
.
.
</body></html>
Forum: (header)
<html><head>
.
.
.
<link rel="stylesheet" type="text/css" href="http://netti-tv.net/tyyli.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="punainen" href="http://netti-tv.net/punainen.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="sininen" href="http://netti-tv.net/sininen.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="vihrea" href="http://netti-tv.net/vihrea.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="pinkki" href="http://netti-tv.net/pinkki.css" />
<script src="http://netti-tv.net/styleswitch.js" type="text/javascript">
/***********************************************
* Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
</script>
.
.
.
</head><body>
.
.
.
<div id="teema1"><a href="javascript:chooseStyle('none', 60)" checked="checked"></a></div>
<div id="teema2"><a href="javascript:chooseStyle('punainen', 60)"></a></div>
<div id="teema3"><a href="javascript:chooseStyle('sininen', 60)"></a></div>
<div id="teema4"><a href="javascript:chooseStyle('vihrea', 60)"></a></div>
<div id="teema5"><a href="javascript:chooseStyle('pinkki', 60)"></a></div>
.
.
.
</body></html>
( Thats only the important parts of the code...if you want to see the rest of the code just go to my site and check it (: )
So as you can see the only difference is that the code has "http://netti-tv.net/"...I just have no idea how to fix this problem...I hope someone can help me. It would mean a lot for me. (: