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.

gravity form center of form disapearing...

  1. first of all i did the test and narrowed this down to the headway theme... i am running an nginx server.

    PHP Version 5.3.2-1ubuntu4.7ppa5~lucid1
    MySQL Version 5.1.41
    WordPress Version 3.2.1
    Gravity Forms Version 1.5.2.8
    Headway Themes verson 2.0.13

    I have the latest headway theme.

    i know I am supposed to go to headway and haven't gotten a helpful reply yet... the reason I am inquiring here is that I have other headway them installations without this issue so this isn't purely headway... It is likely how I have configured headway... Does anyone have any idea where I might start looking... everywhere I insert a form the the first label ovel of the first field appears and then all fields are not there and then there is a submit button...
    http://screencast.com/t/HrHeiCQ0XT3l
    http://screencast.com/t/iQcY55NGFrGM
    http://screencast.com/t/MhmktoFnhu3

    Any ideas about what could be happening to cause this?

    Posted 13 years ago on Wednesday September 7, 2011 | Permalink
  2. i was fooling with this more and when i set Output CSS to NO in gravity forms then the forms work but the formatting is totally screwed up...

    I would like the CSS in the form as the formatting is pretty wacked although atleast all the fields are there... anybody any ideas?

    Posted 13 years ago on Wednesday September 7, 2011 | Permalink
  3. tried upgrading to beta and no same old issue... with css I am lost... :(

    Posted 13 years ago on Wednesday September 7, 2011 | Permalink
  4. Can you post a link to one of the pages so we can see it live? It's impossible to tell from the screenshots what is causing that.

    Posted 13 years ago on Wednesday September 7, 2011 | Permalink
  5. i just went there and they appear to be up with css although still some weird looking formatting... :(

    Posted 13 years ago on Wednesday September 7, 2011 | Permalink
  6. and a few missing fields still :(

    Posted 13 years ago on Wednesday September 7, 2011 | Permalink
  7. I don't see any "missing fields" in the browsers I checked. What browser are you seeing the issue in?

    Also, on the formatting, your theme is applying this rule to all list items and since Gravity Forms are structured using a list, they're going to inherit from a general rule like this

    [css]
    li {
        float: left;
        margin-right: 2px;
    }

    current screenshot: http://bit.ly/r6uNG4

    you can add this rule to the end of your custom theme styles and it should override the previous rule for your forms.

    [css]
    body .gform_wrapper ul li.gfield {
        float: none;
    }

    screenshot: http://bit.ly/ophLuG

    It's also possible this could be the origin of your "missing field" problem too in some browsers. Try that and let me know how it goes.

    Lastly; for future reference, most formatting problems are theme-related. An easy way to check is to view the form preview. If it works and displays properly there, then you know there's some kind of problem with the theme styles and not the plugin itself.

    Posted 13 years ago on Wednesday September 7, 2011 | Permalink