Title: Responsive Center
Last modified: August 21, 2016

---

# Responsive Center

 *  Resolved [IkeGordon](https://wordpress.org/support/users/ikegordon/)
 * (@ikegordon)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/responsive-center/)
 * How can I keep the table centered on the page while it’s moving throughout the
   responsive sizing? For instance, when it resizes for tablet content is pushed
   to the left and isn’t centered. Is there a way to keep all content centered regardless
   of responsiveness?
 * [https://wordpress.org/plugins/tablepress/](https://wordpress.org/plugins/tablepress/)

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

 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/responsive-center/#post-5134114)
 * Hi,
 * thanks for your question, and sorry for the trouble.
 * This should be possible with some “Custom CSS” on the “Plugin Options”s screen.
   Please try adding
 *     ```
       .tablepress-id-123 tbody td {
         text-align: center !important;
       }
       ```
   
 * where the table ID of `123` needs to be adjusted as necessary.
 * If that does not help, please post a link to the page with the table. Thanks!
 * Regards,
    Tobias
 *  Thread Starter [IkeGordon](https://wordpress.org/support/users/ikegordon/)
 * (@ikegordon)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/responsive-center/#post-5134134)
 * Thank you for the super fast reply. Unfortunately, that didn’t work. I added 
   what you suggested and event tried adding in an additional CSS command. See below.
 * .tablepress-id-1 tbody td {
    text-align: center !important; }
 * .tablepress-responsive-tablet tbody td {
    text-align: center !important; }
 * What are your thoughts? Here is a link to the website. [http://www.bimmg.com](http://www.bimmg.com)
   
   The issue is on the homepage with the two side by side banners under the main
   slideshow. This is only an issue once responsiveness has taken affect, so you
   will need to shrink in your browser or view on tablet.
 * I’ve taken privacy off please respond fast as this cannot be off for long.
 * Thank you!
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/responsive-center/#post-5134156)
 * Hi,
 * thanks for the link!
 * The issue here is that you are using the Responsive Tables Extension on a table
   with images, which is not really what it’s best suited for.
    This CSS could work:
 *     ```
       @media (max-width: 979px) {
         .tablepress-id-1 tr,
         .tablepress-id-1 td {
           width: 100%;
         }
       }
       ```
   
 * Regards,
    Tobias
 *  Thread Starter [IkeGordon](https://wordpress.org/support/users/ikegordon/)
 * (@ikegordon)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/responsive-center/#post-5134170)
 * You are correct, that worked…. and yes I am using an incorrect shortcut as a 
   lazy programmer. haha You can resolve this. Thank you
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/responsive-center/#post-5134172)
 * Hi,
 * very nice! Thanks for the confirmation! 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!

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

The topic ‘Responsive Center’ 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/)

## Tags

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

 * 5 replies
 * 2 participants
 * Last reply from: [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * Last activity: [11 years, 9 months ago](https://wordpress.org/support/topic/responsive-center/#post-5134172)
 * Status: resolved