Listbox header transparency

Under App in Web Settings you can set the Table Style to have a background color by adding the following to the HTML Header

<style>
.table th {
    background-color: white;
   }
</style>

This will globally set the background to all table headers to white. There are ways to set up a specific table type style that you can invoke with a JavaScript like discussed here: Another WebListbox CSS Challenge - Different Header Background?

3 Likes