PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Shortcode Centered

  1. I've added a form to my page and the form is showing up as centred on the page, but I need to have it aligned to the left.

    Is there a way I can do this?

    http://qublu.ourdemo.org/contact-us

    Thanks.

    Posted 10 years ago on Saturday June 1, 2013 | Permalink
  2. Richard Vav
    Administrator

    Hi Joe,

    Your form isn't actually centered, the following style that I guess is in your theme's custom CSS options panel is adding a wide left margin.

    .gform_wrapper {
    margin-left: 50px;
    }

    I am not sure what reason it is there for but you have a few options

    • if it isn't in use by any form on your site you can delete it
    • if it is in use then you can modify it so it only affects the form it is required for by changing . to # and then adding _3 to the end, 3 (example) would be the form number you want the style to target
    • or you can add another style to counteract it on this form like so
      #gform_wrapper_1 {
      margin-left: 0;
      }

    Regards,
    Richard

    Posted 10 years ago on Saturday June 1, 2013 | Permalink
  3. Thanks Richard,

    You've saved me a headache :)

    Joe

    Posted 10 years ago on Saturday June 1, 2013 | Permalink
  4. Richard Vav
    Administrator

    You're welcome

    Posted 10 years ago on Saturday June 1, 2013 | Permalink

This topic has been resolved and has been closed to new replies.