I am trying to display a asp:Login control next to an
asp:CreateUserWizard control.  I am using Visual Web Developer 2008
Express Edition, and the page I'm building has a master page.

My code looks like this:

<div id="loginContainer">
     <asp:Login ID="Login1" runat="server">
     </asp:Login>
</div>

<div id="createContainer">
     <asp:CreateUserWizard ID="CreateUserWizard1" runat="server">
          <WizardSteps>
               <asp:CreateUserWizardStep ID="CreateUserWizardStep1"
runat="server">
               </asp:CreateUserWizardStep>
               <asp:CompleteWizardStep ID="CompleteWizardStep1"
runat="server">
               </asp:CompleteWizardStep>
          </WizardSteps>
     </asp:CreateUserWizard>
</div>

The style section of my code looks like this:

#loginContainer {display:inline}
#createContainer {display: inline}


For some reason, if I comment out the two elements, the div's are
displayed inline, if either elements is there, then they are displayed
on different lines.  Any ideas why and how I can get them to display
inline?
--~--~---------~--~----~------------~-------~--~----~
--
You received this because you are subscribed to the "Design the Web with CSS" 
at Google groups.
To post: [email protected]
To unsubscribe: [EMAIL PROTECTED]
-~----------~----~----~----~------~----~------~--~---

Reply via email to