Table cell padding
- Applies to:
- All versions
- Role required:
- Admin
Change the cell padding of tables across your entire site 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:
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;
}
