In a Form, what's the easiest way to create two columns of categories?

C

ChrisJ

I want to create a two column category list, with radio buttons. Do I create a table in the form field? And then add two column cells? After that how can I make it so only one selection can be made from the whole category list? Thank you
 
S

Stefan B Rusynko

The form tag is not a table - it's a html block element




The form already is kinda a table, you'll see the dotted lines when you create the forum. Your cursor will be infront of the
prebuilt button just hit enter a couple of times for the form to expand then insert a two column (or whatever you want) table.


| I want to create a two column category list, with radio buttons. Do I create a table in the form field? And then add two column
cells? After that how can I make it so only one selection can be made from the whole category list? Thank you.
|
 
A

Andrew Murray

but to answer your question yes, you can insert a table (as in
<table>....</table>) in the form.

either in code view, put your table tags in between the <form> and </form> tags
or in design view make sure you insert > table inside the dotted outline,
indicating the form area.





The form already is kinda a table, you'll see the dotted lines when you create
the forum. Your cursor will be infront of the prebuilt button just hit enter a
couple of times for the form to expand then insert a two column (or whatever you
want) table.


| I want to create a two column category list, with radio buttons. Do I create a
table in the form field? And then add two column cells? After that how can I make
it so only one selection can be made from the whole category list? Thank you.
|
 
Top