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.

Quick CSS Help (Thirds CSS Class not working)

  1. Hi,

    I'm working ontop of another developers custom themed CSS.

    I can't get the CSS classes for thirds to show up on my gravity form. I was hoping someone could help me pinpoint what to change to get these elements cleaned up. Whatever I seem to do, the third item appears on another line.

    The example can be found after the post here: http://www.lineleoff.com/2012/09/bite-me/

    The entire CSS file for the theme is here: http://pastebin.com/pHyBhs04

    Posted 11 years ago on Wednesday September 19, 2012 | Permalink
  2. PS.

    I'd also like the submit button on the right end, not a new line, but have no idea how to get that done either.

    Willing to learn...

    Posted 11 years ago on Wednesday September 19, 2012 | Permalink
  3. It looks like these two selectors (padding-left) are the cause:

    [css]
    .art-post ul > li {
    background-image: url('images/postbullets.png');
    background-repeat: no-repeat;
    padding-left: 13px;
    overflow-x: visible;
    overflow-y: hidden;
    }
    .art-post li {
    font-size: 11px;
    color: #949494;
    padding: 0 0 0 13px;
    }

    You should be able to use this:

    [css]
    .gform_wrapper ul li.gfield {
    padding-left: 0;
    }

    For the submit button - usually floating the footer does the trick. So you could target this form's footer:

    [css]
    #gform_wrapper_6 .gform_footer {}
    Posted 11 years ago on Wednesday September 19, 2012 | Permalink
  4. Implementing right away!

    Posted 11 years ago on Wednesday September 19, 2012 | Permalink
  5. The first piece worked...trying this

    #gform_wrapper_6 .gform_footer {
    	float:right}

    ...made the border not go around the form, so I dropped it out, and just left the submit button underneath, which I think will be workable.

    Where can I buy you a beer? Thank you!

    -r

    Posted 11 years ago on Wednesday September 19, 2012 | Permalink
  6. No problem man, glad to help out!

    Posted 11 years ago on Wednesday September 19, 2012 | Permalink

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