Page 1 of 1

--Adding external CSS

PostPosted: Wed Jun 03, 2015 11:32 am
by Development@SIB


This article is outdated - please use our new system at

https://doc.sibvisions.com




If you won't create your own theme or simply want to change some CSS definitions, simply add an external CSS file to your servlet configuration:

Syntax: [ Download ] [ Hide ]
<init-param>
  <param-name>externalCss</param-name>
  <param-value>../mycustomapp.css</param-value>
</init-param>

Put the mycustomapp.css into the root directory of your WebContent. It's also no problem to save the file in sub directories, e.g. ../css/mycustomapp.css but don't forget to create the folder!

Re: Adding external CSS

PostPosted: Tue Sep 15, 2015 1:57 pm
by Development@SIB
Use

Code: Select all
jar!/package/mycustom.css

to load the custom CSS file from the classpath.