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.

List Layout

  1. I'm looking to add a 6 column list layout. I've tried a changing information from the 5 column list, but it didn't work (the changes are listed below). Am I missing a small detail or is it something that is a bit more involved? Thanks for any help you can provide.

    /* 6 column list */
    .gform_wrapper li.gfield.gf_list_6col ul.gfield_checkbox li,
    .gform_wrapper li.gfield.gf_list_6col ul.gfield_radio li {
    	width: 16.6%;
    	float: left;
    	margin: 0;
    	min-height: 1.8em;
            clear right: !important
    }
    .gform_wrapper li.gfield.gf_list_6col ul.gfield_checkbox,
    .gform_wrapper li.gfield.gf_list_6col ul.gfield_radio,
     {
    	overflow: hidden;
            !important
    }
    Posted 11 years ago on Tuesday November 13, 2012 | Permalink
  2. David Peralty

    It looks to me like you aren't using the !important declarations correctly.

    clear right: !important should probably be:
    clear: right !important;

    and

    overflow: hidden;
    !important

    should be:
    overflow: hidden !important;

    Posted 11 years ago on Tuesday November 13, 2012 | Permalink
  3. David Peralty

    Beyond that, you'll have to give me a link to your form to see what's going on. All my best!

    Posted 11 years ago on Tuesday November 13, 2012 | Permalink
  4. That worked!!!! Thanks for your help!

    Posted 11 years ago on Tuesday November 13, 2012 | Permalink