How do I move the signup box on my landing page?

This tip will teach you how to use the custom CSS field in the designer (available to paying customers) to move the signup box around the page if you do not want it centered.

  1. Open the page designer by choosing Design It from the dashboard.
  2. Open the Custom CSS option
  3. Insert the following custom CSS to push the box to the upper left side for example:

    
    .container {
    margin-left: 50px;
    margin-top: 50px; 
    }
    
    
    
  4. Click save

If you wanted the lower right you might do the following with margin-right to offset the container from the right side of the page.

.container {
margin-right: 50px;
margin-top: 50px;
}

Note: This will not work with the Responsive theme.

Knowledge Base and Helpdesk