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.

Formatting Checkbox Choices

  1. The description of each of my checkboxes are a little long and would like to know if I can adjust the alignment to place more of the text on a second line?

    http://www.stroudsburgwesleyan.org/events/soul-shift/

    Posted 12 years ago on Sunday January 22, 2012 | Permalink
  2. It looks like you are using the gf_list_height_25 ready class. That height is restricting your text. If you remove that class, the text should wrap and show normally on it's own.

    Posted 12 years ago on Monday January 23, 2012 | Permalink
  3. Actually I added the ready class after the fact to make it easier to read. I would really like to somehow control what part of the sentence wraps to the next line.

    Posted 12 years ago on Monday January 23, 2012 | Permalink
  4. Gotcha, you probably have a couple of options there then. You could try adding in <br /> tags somewhere in your sentence, or you can set a width on the entire li that wraps and then add some bottom margin to each of the li's inside (place inside your theme's css file):

    [css]
    #field_2_14 {
    width: 400px;
    }
    #field_2_14 li {
    margin-bottom: 10px !important;
    }

    Here is a screenshot of what that would look like (obviously you can change the values above and I had also disabled the ready class here)
    http://grab.by/bEjG

    Main reason I mentioned that particular ready class is because in all browsers it's cutting off your second line, so I don't think that's an ideal use of that here.

    Posted 12 years ago on Monday January 23, 2012 | Permalink