I have 2 html radio buttons (separated by tags) where the text is wrapping under the radio button instead of aligning with the left in
You can simply use CSS to force the text to wrap correctly. I'm assuming that you have a tag around the text and so you can use the following to adjust its position:
span { display: block; margin-top: -16px; margin-left: 28px; }
Hope that this helps! Tomer