Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets">

<h:outputStylesheet name="test.css" />

renders nothing. Do I have to add some configuration? The test.css is avaible in my resource folder.

share|improve this question
1  
can you put some code here – Jigar Joshi Oct 21 '10 at 9:24
still your dir structure involving the dir containing CSS is needed – Jigar Joshi Oct 21 '10 at 11:02

2 Answers

JSF injects stylesheets to either HTML head or body elements (head is the default, IIRC). For JSF to find head or body, you have to declare them as <h:head></h:head> and <h:body></h:body> (not plain <head></head> etc).

share|improve this answer

JSF will inject scripts inline at the tag location if you omit the target, so using <h:outputScript> will work if even you don't have <h:head> or <h:body> tags. The <h:outputStylesheet> tag will alway inject into the head section regardless of target, so there has to be <h:head> elements defined in order to use that tag.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.