Title: expquest's Replies | WordPress.org

---

# expquest

  [  ](https://wordpress.org/support/users/expquest/)

 *   [Profile](https://wordpress.org/support/users/expquest/)
 *   [Topics Started](https://wordpress.org/support/users/expquest/topics/)
 *   [Replies Created](https://wordpress.org/support/users/expquest/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/expquest/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/expquest/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/expquest/engagements/)
 *   [Favorites](https://wordpress.org/support/users/expquest/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Table and shortcode widths stretch across whole page](https://wordpress.org/support/topic/table-and-shortcode-widths-stretch-across-whole-page/)
 *  Thread Starter [expquest](https://wordpress.org/support/users/expquest/)
 * (@expquest)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/table-and-shortcode-widths-stretch-across-whole-page/#post-14653171)
 * Turns out the width was affecting all the normal elements like p, headings, separator,
   regular quote, etc. The theme was limiting the content + comments section width
   to a set (configurable) value of 700 pixels. The theme CSS did not include things
   like tables within that constraint. I updated the Additional CSS section to alter
   the elements affected by that 700px limit and made all content uniform. Now tables
   don’t overflow past the p, heading, etc content.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Table and shortcode widths stretch across whole page](https://wordpress.org/support/topic/table-and-shortcode-widths-stretch-across-whole-page/)
 *  Thread Starter [expquest](https://wordpress.org/support/users/expquest/)
 * (@expquest)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/table-and-shortcode-widths-stretch-across-whole-page/#post-14648892)
 * Thank you [@joyously](https://wordpress.org/support/users/joyously/). Do you 
   think this is an issue with the theme OceanWP or with the blocks themselves? 
   It effects everything from pullquotes to the standard table to plugins like Shortcodes
   Ultimate and Ultimate Blocks.
 * I was able to visually correct the issue by setting .single .entry-content to
   width: 72% (matches the theme’s set content width) and margin: auto to center
   it.
 *     ```
       .single .entry-content {
           margin-bottom: 20px;
           width: 72%;
           margin: auto;
       }
       ```
   

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