Title: Fixing Table Spacing
Last modified: August 22, 2016

---

# Fixing Table Spacing

 *  Resolved [Bryan Willis](https://wordpress.org/support/users/codecandid/)
 * (@codecandid)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/fixing-table-spacing/)
 * The tables box sizing needs to be adjusted for the many themes (anything using
   twitter bootstrap) out there using `box-sizing:border-box`
 *     ```
       table.gridtable th {
         -webkit-box-sizing: content-box;
         -moz-box-sizing: content-box;
         box-sizing: content-box;
       }
       ```
   
 * Also, this isn’t necessary, but to center it all on the page I used this:
 *     ```
       div#content-wrapper {
         margin: 0 auto;
         display: table;
       }
       ```
   
 * [https://wordpress.org/plugins/bracketpress/](https://wordpress.org/plugins/bracketpress/)

The topic ‘Fixing Table Spacing’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/bracketpress_af7f50.svg)
 * [BracketPress](https://wordpress.org/plugins/bracketpress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/bracketpress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/bracketpress/)
 * [Active Topics](https://wordpress.org/support/plugin/bracketpress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bracketpress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bracketpress/reviews/)

## Tags

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

 * 0 replies
 * 1 participant
 * Last reply from: [Bryan Willis](https://wordpress.org/support/users/codecandid/)
 * Last activity: [11 years, 5 months ago](https://wordpress.org/support/topic/fixing-table-spacing/)
 * Status: resolved