How to increase the width of checkbox list item text,
I have more space on right side but the text is coming in multiple lines but not coming to right side.
and also it is possible to place the checkbox left to the text?
Thanks in advance
<asp:CheckBoxList ID="cbList" runat="server" Width="300px" ForeColor="Black" TextAlign="Right">
<asp:ListItem Value="10" Text="Invoice" ></asp:ListItem>
<asp:ListItem Value="20" Text="Payments"></asp:ListItem>
<asp:ListItem Value="30" Text="General Ledger posting"></asp:ListItem>
</asp:CheckBoxList>
.chkBoxList td
{
width:120px; /* or percent value: 25% */
}
where the list item 3 is coming in multiple lines, and i want to make it in a single line.