Good morning, i have a problem in applying a style sheet on a primefaces commandButton
, the button element is as follows:
<p:commandButton value="Complains" styleClass="styleOrange"/>
and the style sheet:
.styleOrange {
background-color: orange;
}
the css file is placed in the resources folder under css folder:
here's the include statement of the css file:
<h:head>
<h:outputStylesheet name="/resources/css/style.css" library="css" />
</h:head>