- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2025 12:36 PM
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.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2025 12:46 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2025 12:46 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2025 08:04 AM
Perfect, thank you!