As I see in the primefaces documentation,
1) To change the font-size of PrimeFaces components globally, use the `.ui-widget` style class.
An example with 12px font size.
.ui-widget,
.ui-widget .ui-widget {
font-size: 12px !important;
}
I have 2 questions on this:
Why is the
.ui-widgetwritten thrice in the above code?For two different instances of
tabViewI want to customize its header background-color differently, but I couldnt find a way to do that. Is that even possible ?