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.

n00b question - radio button causing next question to format strangely.

  1. Let me start with "i am not a coder." I searched and could not find an answer for this question, so here I am. I am having some issues with a form I am building on a demo server:

    As you can see, any question following one with radio buttons fails to display properly. How can I fix that?

    Posted 11 years ago on Monday August 13, 2012 | Permalink
  2. the link would help. http://96.8.125.10/~trashtax/roll-off-dumpster-contact-form/

    Posted 11 years ago on Monday August 13, 2012 | Permalink
  3. This from your theme's stylesheet is causing your woes:

    [css]
    #content.fullwidth ul {
    width: auto;
    margin: -15px 15px 0 0;
    padding: 0;
    list-style-type: none;
    float: left;
    }

    This should do the trick for you, if you want to override that:

    [css]
    .gform_wrapper .gform_body ul li ul {
    float: none !important;
    }

    I also noticed our stylesheet was not getting output on the page, which is optional, but just wanted to throw that out there as well.

    Posted 11 years ago on Monday August 13, 2012 | Permalink
  4. eesh, I am sorry. I am sure your solution works, but as a novice, I need a little more hand holding, please. Where should I paste this snippet of code?

    thank you so much for your rapid and detailed response!

    Posted 11 years ago on Thursday August 16, 2012 | Permalink
  5. This would go into your theme's stylesheet. All themes are different, so you may want to consult with your theme maker if you are unsure.

    Check out the "CSS" section here at the top:
    http://www.gravityhelp.com/documentation/page/Where_Do_I_Put_This_Code%3F

    On our Settings page you can choose to output our CSS or not with a radio button selection of Yes or No.

    Let me know if you run into any issues.

    Posted 11 years ago on Thursday August 16, 2012 | Permalink
  6. haha! victory! thank you so much! I've got it wrangled, now.

    Posted 11 years ago on Thursday August 16, 2012 | Permalink
  7. Right on, glad to help out.

    Posted 11 years ago on Thursday August 16, 2012 | Permalink

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