I'm having trouble fixing the alignment of the radio button text. I tried with CSS and many other "tricks", but it won't display the text on the same line as the radio button is. The text is shifted like the first radio button text on this site.
My code looks like this:
<p id="Incident1">
<label>Please select the right option:</label><br />
<label><input id="indt" name="indt" type="radio" value="Incident" />Incident </label>
<label><input id="indt2" name="indt" type="radio" value="Service"/>Service</label>
</p>
Can someone advise me on this?