Posted on: 2/17/2015 12:46:35 AM | Views : 485

Hi Forum:
I am having a problem with making the text for my radio buttons and check boxes appear where they should be. When I add two radio buttons in the same group like this:
    <asp:RadioButton ID="RadioButton1" runat="server" CssClass="radio" Text="Yes" GroupName="g1" />     <asp:RadioButton ID="RadioButton2" runat="server" CssClass="radio" Text="No " GroupName="g1" />
no matter what I change in the 'radio' Css other than colour, padding and that type of formatting, I cannot seem to alter the text versus radio button proximity. In fact, with this code above, it shows the word 'Yes' on the first line, the radio button on the second line, the 'No' on the third line and the radio button on the fourth line. This could not be further than what I need (the word 'Yes' next to the first radio button and the word ' ...

Go to the complete details ...