WebListbox Header Dark Color Gradient & White Font Color

My objective is to use a dark blue gradient color in the WebListbox header instead of a solid color and I am able to make the gradient work using the following code in the App HTML Header.

<style>
.table th {
    background-image:linear-gradient(#2c508a, #14243e 50%, #0f1b2e)
}
</style>

Untitled-1

What I have not had any success in finding is how to set the header font color to a white or light gray color by searching the forum and online. If you have any advice on how to change the header fon color I sure would appreciate the help.

Try

<style>
.table th {
    background-image:linear-gradient(#2c508a, #14243e 50%, #0f1b2e);
    color:white;
}
</style>
4 Likes

Thanks Alberto! that was almost too easy.

2 Likes