Service Portal Font color change and Border Color Change
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2024 08:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2024 09:28 AM
@Averyy I assume you are using custom widgets on the portal page.
Key combinations(ctrl+alt+right click in mouse) to get the below pop-up as below,
- Open the page in designer or the widget in editor to check in CSS for the color in hex code.
- You can even use Widget instances related to the OOB widgets to add your code in CSS.
- If its a global change on the Portal, go to ESC theme and modify the CSS
Reference : https://www.servicenow.com/community/developer-forum/how-do-you-change-the-color-of-the-widgets-back...
Please mark this as helpful and accept it as a solution if this resolves your query.
Thanks,
Sujatha V.M.
Sujatha V.M.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2024 09:37 AM
You can do this by going into page editor. Then select the component you want to change and update the CSS. This is the CSS code for the boarder I don't know the font off the top of my head.
.panel-heading {
color: black;
background-color: #E4E7EE ;
border-color: #E4E7EE ;
}