I am trying to create a form that has two radio buttons, one below the other. They should look like this:
Option 1 <button>
Option 2 <button>
Unfortunately, it comes out looking like this:
Option 1 <button> <button>
Option 2
I've included the code below. Can anyone tell me what I'm missing here?
Thanks...
Option 1 <button>
Option 2 <button>
Unfortunately, it comes out looking like this:
Option 1 <button> <button>
Option 2
I've included the code below. Can anyone tell me what I'm missing here?
Thanks...
Code:
<!---->
<div>
<fieldset><legend>Book or Author?</legend>
<input type="radio" name="process_what" value="author" /><label for="author_or_book"> Author</label>
<input type="radio" name="process_what" value="book" checked="checked" /><label for="author_or_book"> Book</label>
</fieldset>
</div>
<!---->