dhodgdon
Posts: 80
|
| Posted: 04/29/2005, 1:55 PM |
|
For a horizontal radio button list I want the Description to be centered either above or below the buttons. I have played with various formating controls without success.
eg:
O O O
Label1 Label2 Label3
Thanks in advance for all suggestions
_________________
Regards,
David Hodgdon
|
 |
 |
DonB
|
| Posted: 04/29/2005, 2:36 PM |
|
Lay out your buttons in a "table" by tweaking the HTML.
<table><tr>
<!-- BEGIN RadioButton RadioButton1 -->
<td align="center" width=50><input type="radio" value="{Value}"
name="{RadioButton1_Name}" {Check}><br>{Description}</td>
<!-- END RadioButton RadioButton1 -->
</tr></table>
I tried a couple CSS-only approaches but could only make it work for a
vertical arrangement of buttons
<!-- BEGIN RadioButton RadioButton1 -->
<span style="text-align:center; width:50px"><input type="radio"
value="{Value}" name="{RadioButton1_Name}" {Check}><br>{Description}</span>
<!-- END RadioButton RadioButton1 -->
--
DonB
http://www.gotodon.com/ccbth
"dhodgdon" <dhodgdon@forum.codecharge> wrote in message
news:642729f385573d@news.codecharge.com...
> For a horizontal radio button list I want the Description to be centered
either
> above or below the buttons. I have played with various formating controls
> without success.
>
> eg:
>
>
O O&n
bsp; O
> Label1 Label2 Label3
>
> Thanks in advance for all suggestions
> _________________
> Regards,
> David Hodgdon
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
dhodgdon
Posts: 80
|
| Posted: 05/07/2005, 5:11 PM |
|
Thanks Don,
Your code formatted the radio button list exactly as I wanted.
dh
_________________
Regards,
David Hodgdon
|
 |
 |
|