cssFriendly problems
-
Hi, I have used cssfriendly to create a vertical menu with attractive look.Too late I discovered that it doesn't work correctly in IE6 because it jumps from the right side to the left when the mouse hover on it.Also it is shifted to the left while I made it to align to the right as it appears correctly in IE7. Another problem I discovered is that my login control and its validation are not working correctly its code is as following: <div style="width:50%;"> <asp:LoginView ID="logv1" runat="server"> <AnonymousTemplate> <asp:Login ID="login1" runat="server" FailureAction="RedirectToLoginPage" DestinationPageUrl="Default.aspx" > <LayoutTemplate> <asp:Label ID="lblUserName" runat="server" Text="اسم المستخدم" AssociatedControlID="UserName" Width="50%" /> <asp:TextBox ID="UserName" runat="server" Width="50%" /> <asp:RequiredFieldValidator ID="vldUserName" runat="server" ValidationGroup="LoginGroup" ControlToValidate="UserName" Text="*" ErrorMessage="مطلوب اسم المستخدم"></asp:RequiredFieldValidator> <br /> <asp:Label ID="lblPassword" runat="server" Text="كـلـمـة السـر" AssociatedControlID="Password" Width="50%" /> <asp:TextBox ID="Password" runat="server" TextMode="Password" Width="50%" /> <asp:RequiredFieldValidator ID="vldPassword" runat="server" ControlToValidate="Password" ValidationGroup="LoginGroup" Text="*" ErrorMessage="مطلوب ادخال كلمة السر"></asp:RequiredFieldValidator> <br /> <asp:ImageButton ID="Submit" runat="server" CommandName="Login" ImageUrl="~/images/login.gif"/> <br /> <asp:ValidationSummary ID="vldsum" runat="server" ShowMessageBox="true" ShowSummary="false" /> <br /> <asp:CheckBox ID="RememberMe" runat="server" Text="حفظ اسم الدخول" Visible="true" /> <br /> </LayoutTemplate> </asp:Login> </AnonymousTemplate> </asp:LoginView> </div> Which I put in login page so when access is denied it should go to this page. The validation controls for the CreateUserWizard are not working at all what ever I do which is as following: <div id="NewUser"> <asp:CreateUserWizard ID="createUser1" runat="server" AutoGeneratePassword="False" ContinueDestinationPageUrl="~/Default.aspx" FinishDestinationPageUrl="~/Default.aspx" OnCreatedUser="CreateUserWizard1_CreatedUser"