Table cell padding
- Applies to:
 - All versions
 - Role required:
 - Admin
 
You can change the cell padding of your tables site-wide with CSS.
- Navigate to Site tools > Control panel > Custom Site CSS.
 - Add CSS to modify table padding to the All Roles CSS field.
 - Click Save.
 
Example CSS to change cell padding
This example CSS modifies padding for table headers and table rows. Adjust the em values for your desired padding.
th {
  padding: .5em 1em;
}
td {
  padding: 1em;
}

