Is there a way to store a stylesheet file or text in ServiceNow so that I can include it on KBAs?

jeremyduffy
Kilo Guru

I already know I can include external stylesheets via code directly like any other html page:

<link href="http://www.someexternalplace.css" rel="stylesheet" type="text/css"></link>

But where can I store the actual style sheets in ServiceNow? I can store them on dropbox or some wiki or sharepoint, but none of those seem safe compared to putting it in ServiceNow itself. Is this possible?


Note that I'm not looking to style all KB text, only ones that use specific templates which is why I need the external link to be in the template code, not in any other kind of default or setting.

1 ACCEPTED SOLUTION

YaswanthKurre
Giga Guru

Hi @jeremyduffy ,

 

you can store the style sheets in "sp_css_include.LIST" , "sp_css.LIST" tables.

 

Mark this as helpful/correct if this answers your question.

 

Thanks,

Yaswanth

View solution in original post

2 REPLIES 2

YaswanthKurre
Giga Guru

Hi @jeremyduffy ,

 

you can store the style sheets in "sp_css_include.LIST" , "sp_css.LIST" tables.

 

Mark this as helpful/correct if this answers your question.

 

Thanks,

Yaswanth

Perfect, thank you!