Skip to main content
NiCE KnowledgeKnowledge
NiCE Knowledge Success Center

Table cell padding

Applies to:
All versions
Role required:
Admin
Change the cell padding of tables across your entire site with CSS.
  1. Navigate to Site tools > Control panel > Custom Site CSS
  2. Add CSS to modify table padding to the All Roles CSS field.
  3. 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;
}
  • Was this article helpful?