I want to change the width of my picklist instead of having the default width in primefaces.css I have tried this but it doesn't work.
<h:body>
<f:facet name="last">
<h:outputStylesheet library="default" name="mystyle.css" />
</f:facet>
<p:pickList ...>
...
</p:picklist>
</h:body>
And in my mystyle.css I've only this:
.ui-picklist .ui-picklist-list{
width:400px !important;
}