Title: [Plugin: WP-Table Reloaded] problem with table width
Last modified: August 19, 2016

---

# [Plugin: WP-Table Reloaded] problem with table width

 *  Resolved [Yemoonyah](https://wordpress.org/support/users/yemoonyah/)
 * (@yemoonyah)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-problem-with-table-width/)
 * Hi Tobias,
 * I’m trying to make the width of my table smaller, so the images are almost next
   to each other on this site:
 * [http://metersenpeters.be](http://metersenpeters.be)
 * I added the following custom css but nothing changes, even if I set the width
   to 600px or 6px :
 *     ```
       .wp-table-reloaded-id-2 .column-1 {
         width: 90px;
       }
   
       .wp-table-reloaded-id-2 .column-2 {
         width: 90px;
       }
   
       .wp-table-reloaded-id-2 .column-3 {
         width: 90px;
       }
   
       .wp-table-reloaded-id-2 .column-4 {
         width: 90px;
       }
   
       .wp-table-reloaded-id-2 .column-5 {
         width: 90px;
       }
   
       .wp-table-reloaded-id-2 .column-6 {
         width: 90px;
       }
   
       .wp-table-reloaded-id-2 .column-7 {
         width: 90px;
       }
       ```
   
 * I use the newest versions of WordPress and your plugin
 * Thank you!

Viewing 9 replies - 1 through 9 (of 9 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-problem-with-table-width/#post-1774550)
 * Hi,
 * this happens, because your images still have a margin around them, that separates
   them.
 * So, likely this will be enough to achieve what you want (if my idea of what you
   want is correct 🙂 ):
 *     ```
       .wp-table-reloaded-id-2 img {
         padding: 0!important;
         margin: 0!important;
       }
       ```
   
 * With that you should not need the width CSS commands at all. Can you try that?
 * Best wishes,
    Tobias
 *  Thread Starter [Yemoonyah](https://wordpress.org/support/users/yemoonyah/)
 * (@yemoonyah)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-problem-with-table-width/#post-1774553)
 * Hat funktioniert!
    Vielen, vielen Dank 🙂
 *  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-problem-with-table-width/#post-1774555)
 * Hi,
 * sehr schön! 🙂
 * Tobias
 *  Thread Starter [Yemoonyah](https://wordpress.org/support/users/yemoonyah/)
 * (@yemoonyah)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-problem-with-table-width/#post-1774909)
 * Hi Tobias,
 * ich habe gerade mein Theme ge-updated und jetzt funktioniert der Code nicht mehr.
   Kannst du mir nochmal helfen?
    Danke
 * Yamile
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-problem-with-table-width/#post-1774910)
 * Hallo,
 * das liegt jetzt daran, dass dein neues Theme in den Tabellenzellen noch ein bißchen
   Abstand einbaut.
 * Mit dem CSS-Code
 *     ```
       .wp-table-reloaded-id-2 td {
         padding: 0!important;
       }
       .wp-table-reloaded-id-2 {
         width: auto!important;
       }
       ```
   
 * sollte alles wieder passen.
 * Viele Grüße
    Tobias
 *  Thread Starter [Yemoonyah](https://wordpress.org/support/users/yemoonyah/)
 * (@yemoonyah)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-problem-with-table-width/#post-1774911)
 * Das war die schnellste Antwort die ich je im WordPress Forum bekommen habe. Jetzt
   stimmt alles wieder.
    Danke 🙂
 * Yamile
 * p.s kann ich die Table eigentlich auch manuell in das Theme einbauen?
    Ich haette
   es gern im Header aber weiss nicht wie ich es da rein kriege.
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-problem-with-table-width/#post-1774912)
 * Hallo,
 * prima, das das geklappt hat.
    Wegen der schnellen Antwort hattest du wohl einfach
   Glück, dass ich gerade ins Forum geguckt habe 🙂
 * Manuell ins Theme einbauen geht auch. Dafür musst du dann dein Template Tag statt
   einen Shortcode benutzen. Das ist im Prinzip ein kleines Stück PHP-Code, dass
   das gleiche macht wie der Shortcode, nur eben irgendwo im Theme, außerhalb eines
   Artikels/Seite.
    Am besten guckst du dir mal die zugehörige Beschreibung zu Template
   Tags in der Doku auf [http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/](http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/)
   an.
 * Viele Grüße
    Tobias
 *  Thread Starter [Yemoonyah](https://wordpress.org/support/users/yemoonyah/)
 * (@yemoonyah)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-problem-with-table-width/#post-1774913)
 * Daaaanke 🙂
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-problem-with-table-width/#post-1774914)
 * Bitte! 🙂
 * Tobias

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

The topic ‘[Plugin: WP-Table Reloaded] problem with table width’ 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/)

 * 9 replies
 * 2 participants
 * Last reply from: [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * Last activity: [15 years, 1 month ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-problem-with-table-width/#post-1774914)
 * Status: resolved