Try changing in you trinidad-config.xml <style-sheet-name>skins/aqua/aqua.css<style-sheet-name>
to <style-sheet-name>/skins/aqua/aqua.css<style-sheet-name> HTH, -- Rafa On Tue, Feb 24, 2009 at 10:55 PM, Lars Vogel <[email protected]> wrote: > Hi, > > my little example application does not pickup the skinning. I followed: > http://myfaces.apache.org/trinidad/devguide/skinning.html > > I have two file in WEB-INF: trinidad-skins.xml and trinidad-config.xml. I > believe for skinning no change in web.xml and faces-config.xml is necessary > > trinidad-skins.xml > > <?xml version="1.0" encoding="ISO-8859-1"?> > <skins xmlns="http://myfaces.apache.org/trinidad/skin"> > <skin> > <id>aqua.desktop</id> > <family>aqua</family> > <render-kit-id> > org.apache.myfaces.trinidad.desktop > </render-kit-id> > <style-sheet-name>skins/aqua/aqua.css > </style-sheet-name> > </skin> > </skins> > > trinidad-config.xml > > <?xml version="1.0"?> > <trinidad-config xmlns="http://myfaces.apache.org/trinidad/config"> > <!-- Enable debug output --> > <debug-output>true</debug-output> > <accessibility-mode>default</accessibility-mode> > <skin-family>aqua</skin-family> > </trinidad-config> > > aqua.css in directory WebContent /skins/aqua/ > > body { > background-color: black; > font-size: 60px; > } > > > From Matts answer earlier I see that skin:minimal.desktop is used as a skin > for the JSP. > > Any obvious mistake I'm making? > > Best regards, Lars > > > > >

