take a look here
http://www.gfln.org/Regsiteration.aspx
see the alignment of text "Would attend the conference" on page
i wanted to make the alignmnet of this text same as follwing text on page
"Would your spouse want to come with you"
means bit padding from left
now see the code which need to have changes
Code:<div id=attend_div runat=server visible=false > <asp:UpdatePanel ID="UpdatePanel3" runat="server" UpdateMode=conditional> <ContentTemplate> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="50%" align="left"><strong> Would attend the conference </strong></td> <td width="50%" align="left"><strong></strong> <asp:RadioButtonList EnableViewState=true RepeatDirection=Horizontal ID="spous_atend_Conference" runat="server" AutoPostBack="True"> <asp:ListItem Value="0">Yes</asp:ListItem> <asp:ListItem Selected="True" Value="1">No</asp:ListItem> </asp:RadioButtonList> </td> </tr> </table> <asp:PlaceHolder ID=placeholder2 runat=server > </asp:PlaceHolder> </ContentTemplate> <Triggers> <asp:AsyncPostBackTrigger ControlID="spous_atend_Conference" EventName="SelectedIndexChanged" /> </Triggers> </asp:UpdatePanel> </div>
i m bit new to css handlingsome how




some how
Reply With Quote
