Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Radio button positioning problem

Status
Not open for further replies.

peterv12

Technical User
Dec 31, 2008
108
US
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...


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>
<!---->
 
add a <BR> after Author</label> ?



-- Jason
"It's Just Ones and Zeros
 
IPGuru, How would I use lists to fix this?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top