Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
set font of table headline
Hi,
hope you can help me. I want to change the font-size of my table-headline. How can i do this with css or a method in my code?
Thanks for your support :-)
CSS something like this:
.v-table-header-wrap, .white .v-table-header-wrap, .v-table-footer-wrap, .white .v-table-footer-wrap, .v-table-header-drag {
text-transform: none;
font-size: 12px;
font-family: "Times new roman";
}
The identifier can be found out with Chrome's inspector or Firefox's Firebug etc. Then you just check what rules it has and change those. Note that changing some of the css might force you to change some other things. For example if the font doesn't fit, then you might have to change the height and paddings, and that might lead to having to change the background image.