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?
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?
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.
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.
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.