That worked. Thank you. I wonder why the buttons do not line up with the
MIDDLE of the text, instead of appearing slightly lower than the text?
"Alexey Smirnov" <> wrote in message
news: ps.com...
> On Aug 4, 12:28 am, Alexey Smirnov <alexey.smir...@gmail.com> wrote:
>> On Aug 3, 11:48 pm, "dancer" <dan...@microsoft.com> wrote:
>>
>> > How can I get the buttons to appear on the same line as the question?
>> > No
>> > matter what I do buttons appear on the NEXT line.
>>
>> > Are you at least 18 years of age?
>> > <asp:RadioButtonList id="Eighteen"
>> > RepeatDirection="horizontal" Runat=server>
>> > <asp:ListItem><font face="Verdana"
>> > Size="2">Yes</asp:ListItem>
>> > <asp:ListItem><font face="Verdana"
>> > Size="2">No</asp:ListItem> </asp:RadioButtonList><br>
>>
>> you can add your code to a table
>>
>> <table>
>> <tr>
>> <td>
>> Are you at least 18 years of age?
>> </td>
>> <td>
>> <asp:RadioButtonList id="Eighteen"
>> RepeatDirection="horizontal" Runat=server>
>> <asp:ListItem><font face="Verdana"
>> Size="2">Yes</asp:ListItem>
>> <asp:ListItem><font face="Verdana"
>> Size="2">No</asp:ListItem> </asp:RadioButtonList>
>> </td>
>> </table>
>>
>> The control is created in <DIV> and it makes a new line by default
>
> I was wrong, it creates a table aroud a RadioButtonList...
>
> another option then, you can simply add
>
> <div style="float:left">Are you at least 18 years of age?</div>
>
> It also should make a text and a buttons in one line
>
|