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 spacing issue - Genesis Theme (Sleek)

  1. Sorry to open another thread about spacing but seem to have another problem on one of my other sites. The sample form is on http://www.fusionfields.com/test-page/ (using the genesis-based sleek theme)

    In this case there are no line spaces between the fields and the likert classes seem not to be very happy either!

    I think the CSS problem is in this section:

    #content .post ul li, #content .page ul li, #home ul li {
    	list-style-type: square;
    	margin: 0 0 0 20px;
    	padding: 0;
    	}

    but I'm not sure what I need to add/ change to make it work without messing up other parts of my site later.. thanks.

    Posted 12 years ago on Tuesday July 19, 2011 | Permalink
  2. You're correct about the source of the problem. Try adding this to the end of your theme stylesheet to override that rule for your forms.

    [css]
    #content .post .gform_wrapper ul li,
    #content .page .gform_wrapper ul li,
    #home .gform_wrapper ul li {
        margin: 0 0 14px 0!important;
    }

    screenshot: http://bit.ly/o4pHWP

    Posted 12 years ago on Tuesday July 19, 2011 | Permalink
  3. Thanks much Kevin! The spacing seems to have resolved with the CSS addition but for some reason the likert boxes are blank once one of the multichoice items is selected - any ideas what could be wrong?

    Posted 12 years ago on Tuesday July 19, 2011 | Permalink
  4. Yep, you have a path to a tick.png file defined in your CSS that's not resolving. It can't load the tick image for the background if it can't find it. Just make sure your image is uploaded to your server and the path to the image is correct and you should be good to go.

    Posted 12 years ago on Tuesday July 19, 2011 | Permalink
  5. Thanks again Kevin - all working now :)

    Posted 12 years ago on Wednesday July 20, 2011 | Permalink
  6. Great. That's what I like to hear.

    Posted 12 years ago on Wednesday July 20, 2011 | Permalink

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