asp:RadioButtonList help

C

Chris Kettenbach

Good Afternoon Everyone,
Is there any way to set the font of the listitems inside a radiobutton list?
I have tried spans, tds, and tables and I can seem to get it to work. The
html redered by this control is a label for each radio button in the list.
How can I manipulate this font? It appears larger than the other page
fonts.

Heres the current markup.

<asp:RadioButtonList ID="radioGraduated" Runat="server" RepeatLayout="Table"
RepeatDirection="Vertical">
<asp:ListItem Value="1" >Yes</asp:ListItem>
<asp:ListItem Value="0">No</asp:ListItem>
<asp:ListItem Value="-1">Presently Enrolled</asp:ListItem>
</asp:RadioButtonList>
 
C

Chris Kettenbach

Nevermind I figured this out. I swear I am a moron sometimes!!! Manipulate
it through the attributes of the readiobuttonlist control. Sorry for
wasting time.

CK
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top