Idsa:
I can't see any option for LoginButton alignment at membership login control. Of course, I can use CssClass option... but I don't like creating css only for alignment
Hi
Could you specify the problem more clearly, what about customize the Login control with LayoutTemplate, this way you can set the alignment in table row which contains the LoginButton .
For example:
<asp:Login ID="Login1" runat="server">
<LayoutTemplate>
<table border="0" cellpadding="1" cellspacing="0"
style="border-collapse:collapse;">
.......
<td colspan="2" align=left>
<asp:Button ID="LoginButton" runat="server" CommandName="Login"
Text="Log In" ValidationGroup="Login1" />
</td>
.......
</table>
</LayoutTemplate>
</asp:Login>
Best Regards
XiaoYong Dai
Microsoft Online Community Support
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.