
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2023 09:43 AM
We recently got a notification from ServiceNow stating that they changed the simple list widget behavior due to security concerns. I discovered that our first vendor had cloned this widget and it appears they only did this so that they could change the CSS so the panel heading color. This was to make it a darker gray that we wanted. Is there a way to do this without cloning the OOB widget again?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2023 09:55 AM
Hello @Brian Lancaster
Yes, there is simple way to modify CSS of widget without cloning actual widget itself. You can add below CSS override to the widget instance in your portal page.
.panel-heading{
background-color: red !important;
}
I did below for OOTB index page, you can corelate:
Opened index page definition in platform view, clicked on instance of "Simple list" widget where we need to update CSS.
Widget instance record opens. Add CSS field using form layout if field is already not available. Update CSS field with above mentioned CSS.
Result:
Thank you,
Ali
Thank you,
Ali

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2023 09:55 AM
Hello @Brian Lancaster
Yes, there is simple way to modify CSS of widget without cloning actual widget itself. You can add below CSS override to the widget instance in your portal page.
.panel-heading{
background-color: red !important;
}
I did below for OOTB index page, you can corelate:
Opened index page definition in platform view, clicked on instance of "Simple list" widget where we need to update CSS.
Widget instance record opens. Add CSS field using form layout if field is already not available. Update CSS field with above mentioned CSS.
Result:
Thank you,
Ali
Thank you,
Ali

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2023 10:28 AM
Thanks that worked perfectly.