Never been to TextSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

CSS Switcher Code (See related posts)

{exp:css_switcher}<link rel='stylesheet' type='text/css' media='all' href='{file}' />{/exp:css_switcher}


<form action="<?php echo $_SERVER ['REQUEST_URI']; ?>" method="post">
<select name="css_skin" id="css_skin">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
</select><input type="submit" value="Set New Skin" />
</form>
<ul>
<li><a href="<?php echo $_SERVER ['REQUEST_URI']; ?>?css_skin=1">1</a></li>
<li><a href="<?php echo $_SERVER ['REQUEST_URI']; ?>?css_skin=2">2</a></li>
</ul>


Code for using the CSS Switcher plugin. Insert this anywhere in a EE template where you want this to show.

You need to create an account or log in to post comments to this site.


Related Posts