Title: Problem with Line Breaks
Last modified: August 31, 2016

---

# Problem with Line Breaks

 *  Resolved [Ozanners](https://wordpress.org/support/users/ozanners/)
 * (@ozanners)
 * [10 years ago](https://wordpress.org/support/topic/problem-with-line-breaks/)
 * Hi
 * I have set the line break option to on. And it works but only for the first title
   and input field.
 * Every other line displays the title and the input on the same line.
 * Any thoughts on why that might be?
 * Thanks
 * [https://wordpress.org/plugins/wpgform/](https://wordpress.org/plugins/wpgform/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Mike Walsh](https://wordpress.org/support/users/mpwalsh8/)
 * (@mpwalsh8)
 * [10 years ago](https://wordpress.org/support/topic/problem-with-line-breaks/#post-7298921)
 * Instead of the line break option, you likely want to use CSS to change the appearance
   of your form. There isn’t a one size fits all for this problem as it is theme
   dependent. If you want to post your form URL here I’d be happy to look at it.
 *  Thread Starter [Ozanners](https://wordpress.org/support/users/ozanners/)
 * (@ozanners)
 * [10 years ago](https://wordpress.org/support/topic/problem-with-line-breaks/#post-7298951)
 * Hello Mike
 * Thanks for offering to have a look.
 * I identified some CSS that fixed font colour problems the sites theme caused (
   white text on white background) but I couldn’t identify the spacing code using
   developer tools in Chrome.
 * Ideally I want the title on one line, the input on the next and repeat that for
   each question.
 * Also Is it possible to centre the form?
 * The colour is fine as it is.
 * And can I remove the submit password warning?
 * As for where to input the custom css, is it best to have the css in the plugin
   settings or in the forms settings? I assume the plugin settings apply to any 
   forms created and you only use the form CSS if you want to tweak only a particular
   form, is that right?
 * The form is here:
 * [http://seahorseliveaboard.com/cendrawasih-bay-2016/](http://seahorseliveaboard.com/cendrawasih-bay-2016/)
 * Here is the CSS I have used so far.
 *     ```
       div.ss-q-title {
           display: inline-flex;
           font-weight: bold;
           color: white margin-top: 10px;
           color: white;
       }
   
       input {
           color: black;
       }
   
       div.ss-form-container div.required-message {
           display: none;
       }
   
       textarea.ss-q-short {
           width: 400px;
       }
   
       textarea.ss-q-long {
           width: 400px;
       }
   
       div.ss-q-title {
           margin-top: 20px;
       }
       ```
   
 * Thanks.
 * Tom
 *  Plugin Author [Mike Walsh](https://wordpress.org/support/users/mpwalsh8/)
 * (@mpwalsh8)
 * [10 years ago](https://wordpress.org/support/topic/problem-with-line-breaks/#post-7298985)
 * The default Bootstrap CSS for the label element is causing the problem you’re
   having. Try adding this:
 *     ```
       label.ss-q-item-label {
           display: inline;
       }
       ```
   
 * That will drop your input boxes below the question. You’ll likely want to add
   some margin or padding for the Captcha. You could do something like this (50px
   is an exagerated size to make the point):
 *     ```
       label.ss-q-help + #wpgform-captcha {
           margin: 50px;
       }
       ```
   
 * Hope that helps, let me know if there is something else I can do. BTW – those
   trips to see the whale sharks look awesome!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Problem with Line Breaks’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wpgform_8cc59f.svg)
 * [Google Forms](https://wordpress.org/plugins/wpgform/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wpgform/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wpgform/)
 * [Active Topics](https://wordpress.org/support/plugin/wpgform/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wpgform/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wpgform/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Mike Walsh](https://wordpress.org/support/users/mpwalsh8/)
 * Last activity: [10 years ago](https://wordpress.org/support/topic/problem-with-line-breaks/#post-7298985)
 * Status: resolved