Skip to content
🚀 Rapid Application Development with the App Builder

CSS Table Editor

Style elements in the table container with custom CSS.

WP Data Access - Table Builder - CSS Table Editor

✨ Examples Styling Specific Table Cells

css
th.first_name,
th.last_name,
td.first_name,
td.last_name {
  color: green;
  font-weight: 900;
}

📌 Column names are automatically added to table cells.
📌 Learn how to add custom class names...

✨ Example Styling the Filter Container

css
.pp-filter-paper {
  background-color: yellow;
}

📌 A class hierarchy is available here...

📌 Notes

  • Affects only elements in the table container.
  • Manually entered CSS is added on the fly to the table container.
  • Supports child element styling.