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.

Custom form options

  1. I would like to know if any of the following is possible either through CSS or other means. If these questions have been answered already on the forum, i apologize. If you can provide a link, it would be greatly appreciated!
    1) I would like to create a mail chimp form that is horizontal i.e. the name email and submit button all fall on the same line.
    2) Can I adjust the height and width of fields and text size?
    3) Can I adjust colors of text and error messages?
    4) Any good resources for custom CSS integration?

    Thanks in advance for any info!

    Posted 11 years ago on Saturday January 19, 2013 | Permalink
  2. I found the answer to the horizontal menu question with CSS ready classes, except, is there a way to line the submit button horizontally as well?

    Posted 11 years ago on Saturday January 19, 2013 | Permalink
  3. Please provide a link to the form online. The submit button is not part of the form body, so you have to position it differently. Normally you will target the submit button with CSS like this:

    .gform_footer.top_label {
      float: right;
      margin: -85px 335px 0 0;
    }

    Change those values to your own to put the button where you want it.

    Posted 11 years ago on Monday January 28, 2013 | Permalink