Simply i tried to look the name of a component in generated HTML through FireBug after that i change it in my manually defined css in JSF project, but could not override the PrimeFaces' CSS definition. Thanks in advance for any idea.
|
If using primefaces 2.2.1, Use the h:outputStylesheet tag and include it in h:body not in h:head to override primefaces stylesheets, same with h:outputScript. Example:
If using primefaces 3, follow this blog entry http://blog.primefaces.org/?p=1433 |
|||||||||||
|
|
Make sure your CSS file link comes after the PrimeFaces file in your code.
In addition, while it is not generallythe preferred solution you can add !important after your styles to give them the highest priority: http://www.w3.org/TR/CSS2/cascade.html#important-rules |
|||
|
|
Adding to what @Ravi already answered: From primefaces 3.0 on you can customize the order of the resources. However when I tried that it was not working at first. It turned out that I could not use the JSF component to include css like this:
Instead I had to use:
Only then the ordering started to work. EDIT: My answer is superfluous if you put the It also not advisable to do this because then the resources are not processed by the |
|||||||||
|
|
Try to create more specific CSS rules for your overrides. The easiest way is to prepend PrimeFaces CSS definitions by a specific id which is used only on your pages:
Read more about CSS Specificity in "CSS Specificity: Things You Should Know" article. |
|||
|
|
|
Basically, you have to use a more well defined (stronger) selector. The more specific your CSS is, the higher importance the interpreter will grant to it. Please see this article on CSS Cascading Order: http://www.w3.org/TR/CSS2/cascade.html Or if you are in a rush: http://ww.boogiejack.com/CSS_4.html |
|||
|
|