Title: Stacked rows
Last modified: November 17, 2018

---

# Stacked rows

 *  Resolved [tazboy](https://wordpress.org/support/users/tazboy/)
 * (@tazboy)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/stacked-rows/)
 * For a smaller screen I would like my rows in a column. Is this possible?
 * **Normal view:**
    Game1 Name1 Date1 Game2 Name2 Date2 Game3 Name3 Date3
 * **Mobile view:**
    Game1 Name1 Date1
 * Game2
    Name2 Date2
 * Game3
    Name3 Date3

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

 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/stacked-rows/#post-10893288)
 * Hi,
 * thanks for your post, and sorry for the trouble.
 * For this, please try adding this to the “Custom CSS” textarea on the “Plugin 
   Options” screen of TablePress:
 *     ```
       @media screen and (max-width: 768px) {
         .tablepress-id-123 thead th,
         .tablepress-id-123 tbody td {
           display: block;  
         }
       }
       ```
   
 * Just change the 123 to the desired table ID.
 * Regards,
    Tobias
 *  [nicoatienza](https://wordpress.org/support/users/nicoatienza/)
 * (@nicoatienza)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/stacked-rows/#post-11525174)
 * Hi [@tobiasbg](https://wordpress.org/support/users/tobiasbg/)!
 * Is there any way to apply this to all tables on my site? I don’t want to have
   to add this to Custom CSS for every table I create.
 * Thanks again for an excellent plugin and fast support!
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/stacked-rows/#post-11525189)
 * Hi,
 * yes! Just use the general CSS selector (without the table ID):
 *     ```
       @media screen and (max-width: 768px) {
         .tablepress thead th,
         .tablepress tbody td {
           display: block;  
         }
       }
       ```
   
 * Regards,
    Tobias
 *  [nicoatienza](https://wordpress.org/support/users/nicoatienza/)
 * (@nicoatienza)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/stacked-rows/#post-11525328)
 * Thank you so much!!
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/stacked-rows/#post-11525334)
 * Hi,
 * sure, no problem! 🙂
 * Best wishes,
    Tobias
 * P.S.: In case you haven’t, please [rate TablePress](https://wordpress.org/support/plugin/tablepress/reviews/#new-post)
   here in the plugin directory. Thanks!

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

The topic ‘Stacked rows’ 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/)

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