Check out my Fiddle here...
The radio buttons are displaying correctly in the fiddle.
<div class="element-radio" title="Do you want to float the text to the left, right, or not at all?"><h4 class="title" style="font-weight: bold;">Float (left, right or none)</h4>
<div class="column column3">
<label>
<input type="radio" name="radio" value="Left" />
<span>Left</span>
</label>
</div>
<span class="clearfix"></span>
<div class="column column3">
<label><input type="radio" name="radio" value="Right" />
<span>Right</span>
</label>
</div>
<span class="clearfix"></span>
<div class="column column3">
<label>
<input type="radio" name="radio" value="None" />
<span>None</span>
</label>
</div>
<span class="clearfix"></span>
</div>
However, when I view the website I'm working on, located here, the radio buttons appear as small boxes and are unresponsive.
This is the Bootstrap CDN that I am using -
Strange thing is, the website functions properly locally but not once it's uploaded to the server.
Any solutions or suggestions?