Skip to content
🚀 Rapid Application Development with the App Builder

CSS Table Editor

Style elements in the table container width custom CSS.

WP Data Access - Table Builder - CSS Table Editor

✨ Examples Styling Specific Table Cells

css
th:first-of-type,
td:first-of-type {
	color: green;
	font-weight: 900;
}
css
td.first_name,
td.last_name {
	background-color: yellow;
}

✨ Example Styling the Filter Container

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

📌 Notes

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

> Check the class hierarchy for available elements and class names.