I’ve gotten the CSS switcher working with the drop down select list, as per the code below [which is a straight mod of the documentation example].
<form action="" method="post">
<select name="css_skin" id="css_skin">
<option value="1">Default</option>
<option value="2">Low Vision</option>
<option value="3">Handheld</option>
</select>
<input type="submit" value="Set Style" />
</form>
I noticed one more advantage of this method over javascript style switchers - namely only one sheet is named in the final HTML - unlike the javascript version - where the other sheets must be named as alternatives. This means that no HTTP requests are made for those alternate sheets on page loading - thus increasing load speed, especially if over a route with high latency!
.
My question is - is it possible to use the switcher with:
1) a form with a number of radio buttons
or
2) a list of links.
It seems that the plugin requires a single field item with a specific name/id, so I can’t quite see how to proceed.
Any hints/ideas very welcome - ideally without needing mods to the plugin!
Jan
