Title: [Plugin: WP-Table Reloaded] multiple tables with same settings
Last modified: August 19, 2016

---

# [Plugin: WP-Table Reloaded] multiple tables with same settings

 *  [mathijsbok](https://wordpress.org/support/users/mathijsbok/)
 * (@mathijsbok)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-multiple-tables-with-same-settings/)
 * Is there a possibility to set in the custom CSS a few line for 25 tabels with
   the same width setting. Now i have for each table this code :
 * _[CSS moderated as per the [Forum Rules](http://codex.wordpress.org/Forum_Welcome).
   Please post a link to your site instead.]_
 * Is there an easy way to set this code for multiple table ID’s. Otehrwise i have
   a long CSS

Viewing 1 replies (of 1 total)

 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-multiple-tables-with-same-settings/#post-1807231)
 * Hi,
 * you can combine the CSS by combining the selectors of all commands that are the
   same.
    (I can’t see your actual CSS as it was edited my a moderator, so I made
   up the following example.)
 * You can shorten this:
 *     ```
       .wp-table-reloaded-id-2 .column-2 {
         width: 100px;
       }
   
       .wp-table-reloaded-id-2 .column-4 {
         width: 100px;
       }
   
       .wp-table-reloaded-id-3 .column-1 {
         width: 100px;
       }
   
       .wp-table-reloaded-id-3 .column-2 {
         width: 100px;
       }
       ```
   
 * to this:
 *     ```
       .wp-table-reloaded-id-2 .column-2, .wp-table-reloaded-id-2 .column-4, .wp-table-reloaded-id-1 .column-1, .wp-table-reloaded-id-3 .column-2 {
         width: 100px;
       }
       ```
   
 * Both have the same meaning and effect, but the second is much shorter.
 * Best wishes,
    Tobias

Viewing 1 replies (of 1 total)

The topic ‘[Plugin: WP-Table Reloaded] multiple tables with same settings’ is closed
to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-table-reloaded_f7dcd3.svg)
 * [WP-Table Reloaded](https://wordpress.org/plugins/wp-table-reloaded/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-table-reloaded/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-table-reloaded/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-table-reloaded/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-table-reloaded/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-table-reloaded/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * Last activity: [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-multiple-tables-with-same-settings/#post-1807231)
 * Status: not resolved