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.

form display problem

  1. cuddysteph
    Member

    Could you help me. For example here is the form I created with gravity form.

    http://img811.imageshack.us/img811/5669/69204556.jpg

    and what we can see on my web site

    http://img259.imageshack.us/img259/8286/96324369.jpg

    Someone can help me ?

    Posted 11 years ago on Sunday March 24, 2013 | Permalink
  2. Richard Vav
    Administrator

    Your themes css is the likely culprit here, can you provide a link to a live page containing the form in question so we can examine the css and suggest possible solutions.

    Posted 11 years ago on Sunday March 24, 2013 | Permalink
  3. cuddysteph
    Member

    here the link

    http://www.skypenosis.fr/contact/

    Posted 11 years ago on Monday March 25, 2013 | Permalink
  4. Yes, it's inheriting from your theme. Your theme is setting a 42px font size for any span element inside the "post" container. You can add this to the end of your theme stylesheet and it should override that for your forms.

    [css]
    body .post .gform_wrapper span {
    	font-size: 12px !important;
    	line-height: 1.4em;
    }

    screenshot: http://i.imgur.com/bf52TIF.jpg

    Posted 11 years ago on Monday March 25, 2013 | Permalink
  5. cuddysteph
    Member

    ok thanks but how can i put the background in white ?

    Posted 11 years ago on Monday March 25, 2013 | Permalink
  6. Richard Vav
    Administrator

    Your theme is adding a background image to the ul element so following Kevin's advice above try adding this to remove the background image from the gravity forms ul element

    body .post .gform_wrapper ul {
         background-image: none;
    }
    Posted 11 years ago on Monday March 25, 2013 | Permalink
  7. cuddysteph
    Member

    ok thank you

    Posted 11 years ago on Monday March 25, 2013 | Permalink
  8. cuddysteph
    Member

    Only one thing how can i center a form on my page ?

    Posted 11 years ago on Monday March 25, 2013 | Permalink