|
> Hi,
>
> I would like to include a CSS dynamique file, as for the default Jahia
> template it's a JSP file including a CSS definition using dynamique
> parameters...
>
> As I'm testing my portlet I would like to make a test and incude it into the
> body because the header is cutting for a portlet... Later i will use
> attributes to propose my web template to include it into the header...
>
> This is my later test:
> --------------------------------------------------------------------
> (...)
>
>
> > " rel=stylesheet webapp_css.jsp?% css>" type="text/css">
> (...)
> --------------------------------------------------------------------
It's better to insert your CSS between <head></head> tags.
The order of definition are very important. If your webapp CSS contains some definitions with a name already used in the standard web_css.jsp your new definitions needs to be in this order :
standard web_css.jsp
your webapp CSS
>
> But it doesn't work... I tryed to include the content directly into
|
