So I have my site set up to have two different themes, and that works wonderfully, but when I'm making a lot of changes, I can miss some stuff and things start to not look the same.
This is how I'm doing that:
<select onchange="window.location=this.value">
<option>Default</option>
<option value="http://MyWebsite.com/Cyan/">Cyan</option>
</select>
What I WANT to do, is just have two separate style.css files and have the dropdown menu request the one you choose.
This would make my job so much easier, but I'm not 100% sure how to do it. Would I simply replace the website link with the stylesheet? Is there even a way to do this?