I'm using a checkbox in Semantic UI. I would like to switch the position of the label and the input but it's proving to be kind of a pain. I am using the toggle checkbox.
<div class="ui toggle checkbox">
<input id="privacy" type="checkbox" checked="checked">
<label for="privacy">Public</label>
</div>
Semantic UI checkboxes docs are here: http://semantic-ui.com/modules/checkbox.html#/definition
If I switch the input and label in the html, the toggle function stops working. I can't even seem to position the elements relatively... is there some easy class I can add or something that will enable the input and label to have switched positioning while still maintaining the functionality of the red-green toggle?
Thanks..
Update: I'm working on a fiddle here: this INCLUDES the semantic ui css and js.