Foros de discusión

how to include CSS file in JSF

Swetha Kumpati, modificado hace 11 años.

how to include CSS file in JSF

New Member Mensajes: 4 Fecha de incorporación: 28/08/12 Mensajes recientes
Hi,

I have created few xhtml for my liferay portlets... they are working well but i am unable to apply CSS to my xhtml...

please consider my sample code..
<h:outputStylesheet name="override.css" />
<h:outputLabel styleClass="dataBold" value="JESUS"></h:outputLabel>

the override.css file is in CSS folder that is under docroot in my liferay portlet project.
I also tried by including library in outputStylesheet tag as below :
<h:outputStylesheet library="css" name="override.css" />
<h:outputLabel styleClass="dataBold" value="JESUS"></h:outputLabel>

PLease help me asap i want to get my css work in the xhtml
Thanks in Advance

Swetha
Swetha Kumpati, modificado hace 11 años.

RE: how to include CSS file in JSF

New Member Mensajes: 4 Fecha de incorporación: 28/08/12 Mensajes recientes
hey please someone help me... am really running out ideas....
thumbnail
David H Nebinger, modificado hace 11 años.

RE: how to include CSS file in JSF

Liferay Legend Mensajes: 14916 Fecha de incorporación: 2/09/06 Mensajes recientes
You should not be trying to inject CSS and/or JS in your xhtml pages.

Instead you should use the liferay-portlet.xml to include these resources.
thumbnail
Neil Griffin, modificado hace 11 años.

RE: how to include CSS file in JSF

Liferay Legend Mensajes: 2655 Fecha de incorporación: 27/07/05 Mensajes recientes
There are two ways of loading CSS resources in a JSF2 view/composition:

1. Using the HTML link element tag like this:
<link href="#{request.contextPath}/css/foo.css" rel="stylesheet" type="text/css"></link>

2. Using the JSF2 h:outputStylesheet component tag like this:
<h:outputStylesheet library="css" name="css" />

The benefit of using #1:
- The browser directly requests a resource from the server and does not invoke the JSF lifecycle.

The benefits of using #2:
- The CSS resource can use the #{resource['']} EL-expression inside it for images.
- The href URL generated by the h:outputStylesheet renderer is compatible with WSRP.

So #1 is always faster, but #2 is more flexible. This demo uses #2 simply for testing purposes.