Title: adding a class
Last modified: December 31, 2017

---

# adding a class

 *  Resolved [bernbeam](https://wordpress.org/support/users/bernbeam/)
 * (@bernbeam)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/adding-a-class-2/)
 * Hi there,
 * i wonder if it is possible to add a class to the rdv table in order to make it
   responsive.
    I made a rendez-vous with a lot of dates. To show them all the table
   needs to be scrollable in horizontal direction.
 * Any ideas, how to resolve this?
 * Thanks a lot!
 * Bernhard

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

 *  Plugin Author [awijasa](https://wordpress.org/support/users/awijasa/)
 * (@awijasa)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/adding-a-class-2/#post-9823456)
 * Hello [@bernbeam](https://wordpress.org/support/users/bernbeam/),
 * The first step is to add a div wrapper around the #rendez-vous-attendees-prefs
   table.
 * I assume that you are comfortable applying plugin modifications yourself.
 * Here are the detailed steps to make the Rendez Vous time table horizontally scrollable:
 * 1. Open /plugins/rendez-vous/includes/rendez-vous-template.php.
 * 2. Replace `$output = '<table id="rendez-vous-attendees-prefs">';` with `$output.
   = '<table id="rendez-vous-attendees-prefs">';`.
 * 3. Above that line, add `$output = '<div id="rendez-vous-attendees-prefs-wrapper"
   >';`.
 * 4. Below `$output .= '</table>';`, add `$output .= '</div>';`
 * Then, add this CSS into Appearance > Customize > Additional CSS:
 *     ```
       #rendez-vous-attendees-prefs-wrapper {
           overflow-x: auto;
           overflow-y: hidden;
       }
       ```
   
 * I hope this helps.
 * Thanks,
 * [@awijasa](https://wordpress.org/support/users/awijasa/)
    -  This reply was modified 8 years, 4 months ago by [awijasa](https://wordpress.org/support/users/awijasa/).
 *  Thread Starter [bernbeam](https://wordpress.org/support/users/bernbeam/)
 * (@bernbeam)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/adding-a-class-2/#post-9823709)
 * Hello awijasa,
 * thanks for your great support! It helped!
 * All the best for the new year!
 * Bernhard
 *  Plugin Author [awijasa](https://wordpress.org/support/users/awijasa/)
 * (@awijasa)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/adding-a-class-2/#post-9823942)
 * Here is to an awesome 2018!!
 * [@awijasa](https://wordpress.org/support/users/awijasa/)

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

The topic ‘adding a class’ is closed to new replies.

 * ![](https://ps.w.org/rendez-vous/assets/icon-256x256.png?rev=1008141)
 * [Rendez Vous](https://wordpress.org/plugins/rendez-vous/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/rendez-vous/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/rendez-vous/)
 * [Active Topics](https://wordpress.org/support/plugin/rendez-vous/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/rendez-vous/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/rendez-vous/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [awijasa](https://wordpress.org/support/users/awijasa/)
 * Last activity: [8 years, 4 months ago](https://wordpress.org/support/topic/adding-a-class-2/#post-9823942)
 * Status: resolved