Title: Two boxes side by side
Last modified: August 21, 2016

---

# Two boxes side by side

 *  [Discman3](https://wordpress.org/support/users/discman3/)
 * (@discman3)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/two-boxes-side-by-side/)
 * Hey,
 * I have full width side and I have all boxes in my form in a separate line. How
   to make two boxes side by side?
 * Greetings
 * [http://wordpress.org/extend/plugins/contact-form-7/](http://wordpress.org/extend/plugins/contact-form-7/)

Viewing 1 replies (of 1 total)

 *  [Neil Murray](https://wordpress.org/support/users/buzztone/)
 * (@buzztone)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/two-boxes-side-by-side/#post-3940157)
 * I use Ordered List elements to display multiple fields on single line.
 *     ```
       HTML:
       <ol class="singleline">
       <li> <label for="your-name">Your Name (required)&nbsp</label> [text* your-name] </li>
       <li> <label for="your-email">Your Email (required)&nbsp</label> [email* your-email] </li>
       </ol>
       ```
   
 * Added to Form section of CF7 interface. <label> tags are added for improved accessability.
 *     ```
       CSS:
       .wpcf7-form .singleline ol {
       list-style: none;
       margin: 0;
       }
   
       .wpcf7-form .singleline li{
       display: inline-block;
       float: left;
       margin-right: 10px;
       padding-right: 10px;
       }
       ```
   
 * Added to Child Theme style.css

Viewing 1 replies (of 1 total)

The topic ‘Two boxes side by side’ is closed to new replies.

 * ![](https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255)
 * [Contact Form 7](https://wordpress.org/plugins/contact-form-7/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/contact-form-7/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/contact-form-7/)
 * [Active Topics](https://wordpress.org/support/plugin/contact-form-7/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/contact-form-7/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/contact-form-7/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Neil Murray](https://wordpress.org/support/users/buzztone/)
 * Last activity: [12 years, 10 months ago](https://wordpress.org/support/topic/two-boxes-side-by-side/#post-3940157)
 * Status: not resolved