snlm95
snlm95

Reputation: 75

Primefaces facet footer style

How can I change the footer style of Primefaces (3.5) datatable footer? Or more specifically, its background-color?

I tried skinning it with .ui-datatable-footer but it doesn't seem to work. However, doing the same with color works perfectly, font-weight too.

Upvotes: 3

Views: 4969

Answers (1)

Hatem Alimam
Hatem Alimam

Reputation: 10048

You might need to use important alongside your background prop

.ui-datatable-footer {
   background: red !important;
 }

Upvotes: 1

Related Questions