I'm in search of a way to align a text field next to a radio button using Bootstrap. If anyone knows of a specific class that can help achieve this, I would greatly appreciate it.
My current method results in misalignment, with the textbox appearing directly below the radio button instead of inline as desired.
You can view my code on JSFiddle here: http://jsfiddle.net/fs85eedu/
<div class="radio">
<label class="control-label">
<input type="radio" name="radioname" id="radioid" class="radio_class">
<label>text here</label>
<div class='row'>
<div class="col-md-5">
<input type="text" id="q4_c_1_2" name="q4_c_text" placeholder="Enter role/titile" class="form-control">
</div>
</div>
</label>
</div>