Title: TD Styling
Last modified: August 21, 2016

---

# TD Styling

 *  Resolved [thinkmedia](https://wordpress.org/support/users/thinkmedia/)
 * (@thinkmedia)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/td-styling/)
 * Hi,
 * I have read all the documentation and tried every CSS combination possible.
 * I just want the text aligned center in the td.
 * .tablepress-id-2 .row-1 .column-1, {text-align: center !important;}
 * What am I missing??
 * Thanks 🙂
 * Mitch
 * [https://wordpress.org/plugins/tablepress/](https://wordpress.org/plugins/tablepress/)

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

 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/td-styling/#post-4853168)
 * Hi Mitch,
 * thanks for your post, and sorry for the trouble.
 * The reason for this is just a small syntax error: The comma before the `{`.
    
   Commas must only be used to combine multiple selectors, but not before the `{`.
   Thus,
 *     ```
       .tablepress-id-2 .row-1 .column-1 {
         text-align: center !important;
       }
       ```
   
 * should work.
 * Regards,
    Tobias
 *  Thread Starter [thinkmedia](https://wordpress.org/support/users/thinkmedia/)
 * (@thinkmedia)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/td-styling/#post-4853210)
 * DOH!
 * This is what happens when you stare at CSS way too long … you miss something 
   so simple.
 * Thanks Tobias!
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/td-styling/#post-4853219)
 * Hi,
 * no problem, you are very welcome! 🙂 Good to hear that this helped!
 * Best wishes,
    Tobias
 * P.S.: In case you haven’t, please [rate TablePress](https://wordpress.org/support/view/plugin-reviews/tablepress)
   here in the plugin directory. Thanks!
 *  [susi0404](https://wordpress.org/support/users/susi0404/)
 * (@susi0404)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/td-styling/#post-4853278)
 * Hi,
 * sorry to hijacking the thread but:
 * How to center every row and column of the table, not just row-1 column-1?
 * Regards,
    Susi
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/td-styling/#post-4853279)
 * Hi Susi,
 * you would use
 *     ```
       .tablepress-id-123 th,
       .tablepress-id-123 td {
         text-align: center;
       }
       ```
   
 * for that (with `123` being that table ID, or by removing the `-id-123` part altogether
   to have this apply to all tables at once).
 * Regards,
    Tobias
 *  [susi0404](https://wordpress.org/support/users/susi0404/)
 * (@susi0404)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/td-styling/#post-4853280)
 * Awesome. Thanks for quick response. Works fine.
 * Best wishes,
    Susi
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/td-styling/#post-4853281)
 * Hi,
 * no problem, you are very welcome! 🙂 Good to hear that this helped!
 * Best wishes,
    Tobias
 * P.S.: In case you haven’t, please [rate TablePress](http://wordpress.org/support/view/plugin-reviews/tablepress)
   here in the plugin directory. Thanks!

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

The topic ‘TD Styling’ is closed to new replies.

 * ![](https://ps.w.org/tablepress/assets/icon.svg?rev=3192944)
 * [TablePress - Tables in WordPress made easy](https://wordpress.org/plugins/tablepress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tablepress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tablepress/)
 * [Active Topics](https://wordpress.org/support/plugin/tablepress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tablepress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tablepress/reviews/)

 * 7 replies
 * 3 participants
 * Last reply from: [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * Last activity: [12 years, 3 months ago](https://wordpress.org/support/topic/td-styling/#post-4853281)
 * Status: resolved