My check boxes are showing on two lines. I have them in a table and need the checkbox and the text on the same line. What am I doing wrong?
<asp:TableCell>
<div style="white-space: nowrap">
<asp:CheckBoxList runat="server"
ID="cbNorthList"
CellPadding="5"
CellSpacing="5"
RepeatColumns="7"
Width="50px"
RepeatDirection="Horizontal"
TextAlign="Right"
RepeatLayout="Table" >
</asp:CheckBoxList>
</div>
</asp:TableCell>
...
Go to the complete details ...