Title: CSS Help
Last modified: October 8, 2017

---

# CSS Help

 *  Resolved [prakashacharya](https://wordpress.org/support/users/prakashacharya/)
 * (@prakashacharya)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/css-help-75/)
 * Hi, This is a great plugin. Can you please help me with a CSS which will align
   the form horizontally in 3 columns. I have a plugin that I am using but would
   like to use this instead. In above page, there is a plugin with heading “Make
   a Booking”. I would like to replace that plugin with this but would like to keep
   the formatting something similar.
    Thank you!
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fcss-help-75%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  Thread Starter [prakashacharya](https://wordpress.org/support/users/prakashacharya/)
 * (@prakashacharya)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/css-help-75/#post-9566593)
 * i kindda did some.. but still awaiting your professional CSS.
 *  [NateWr](https://wordpress.org/support/users/natewr/)
 * (@natewr)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/css-help-75/#post-9568753)
 * Hi [@prakashacharya](https://wordpress.org/support/users/prakashacharya/),
 * The following should put the fields into three columns:
 *     ```
       .rtb-booking-form fieldset > div {
           float: left;
           width: 33%;
       }
       ```
   
 *  Thread Starter [prakashacharya](https://wordpress.org/support/users/prakashacharya/)
 * (@prakashacharya)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/css-help-75/#post-9569633)
 * That fixed the issue in big screens. Is there seperate css to make it responsive?
 *  [NateWr](https://wordpress.org/support/users/natewr/)
 * (@natewr)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/css-help-75/#post-9572289)
 * Hi [@prakashacharya](https://wordpress.org/support/users/prakashacharya/),
 * You can wrap the CSS code in a media query to only target viewports with a minimum
   width:
 *     ```
       @media (min-width: 992px) {
         .rtb-booking-form fieldset > div {
           float: left;
           width: 33%;
         }
       }
       ```
   
 *  Thread Starter [prakashacharya](https://wordpress.org/support/users/prakashacharya/)
 * (@prakashacharya)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/css-help-75/#post-9573121)
 * Thank you so much 🙂

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

The topic ‘CSS Help’ is closed to new replies.

 * ![](https://ps.w.org/restaurant-reservations/assets/icon-128x128.png?rev=2205491)
 * [Five Star Restaurant Reservations - WordPress Booking Plugin](https://wordpress.org/plugins/restaurant-reservations/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/restaurant-reservations/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/restaurant-reservations/)
 * [Active Topics](https://wordpress.org/support/plugin/restaurant-reservations/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/restaurant-reservations/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/restaurant-reservations/reviews/)

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)
 * [formatting](https://wordpress.org/support/topic-tag/formatting/)

 * 5 replies
 * 2 participants
 * Last reply from: [prakashacharya](https://wordpress.org/support/users/prakashacharya/)
 * Last activity: [8 years, 8 months ago](https://wordpress.org/support/topic/css-help-75/#post-9573121)
 * Status: resolved