Css

Everyone has been really helpful, I appreciate it. Two more questions.

First, the RT wiki hasn’t allowed new user accounts to be created for
a while now. Known problem?

Second, the wiki and this mailing list mention webrt.css as a way to
customize the front-end look. I searched my install and didn’t find
any webrt.css file. Has that file been replaced and if so, what’s the
best way to go about modifying the stylesheets now?

Thanks,
Steve

Second, the wiki and this mailing list mention webrt.css as a way to
customize the front-end look. I searched my install and didn’t find
any webrt.css file. Has that file been replaced and if so, what’s the
best way to go about modifying the stylesheets now?

There is no webrt.css in 3.6.x, you will find a css directory in
share/html/NoAuth.

You can modify existing styles from the two default skins (3.4-default,
3.5-default) or copy one into a new dir, then modify it, then change the
following value in your RT_Siteconfig.pm:

This determines the default stylesheet the RT web interface will use.

RT ships with two valid values by default:

3.5-default The totally new, default layout for RT 3.5

3.4-compat A 3.4 compatibility stylesheet to make RT 3.5 look

(mostly) like 3.4

This value actually specifies a directory in share/html/NoAuth/css/

from which RT will try to load the file main.css (which should

@import any other files the stylesheet needs). This allows you to

easily and cleanly create your own stylesheets to apply to RT.

Set($WebDefaultStylesheet, ‘3.5-default’);