- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2018 12:27 PM
I need to replace the VIP icon on the Incident form. I've tried this and didn't work.Can't seem to find the images/icons location.
upload image to: System UI > Images. pinnacleP.png
Existing:
background-image: url('images/icons/vip.gif');
background-repeat: no-repeat;
background-position: 98% 5px;
padding-right: 30px;
New:
background-image: url('images/pinnacleP.png');
background-repeat: no-repeat;
background-position: 98% 5px;
padding-right: 30px;
Filter: client script
Table: Incident
Name: Highlight VIP Caller
Change file name:
callerLabel.setStyle({backgroundImage: "url(images/icons/vip.gif)", backgroundRepeat: "no-repeat", backgroundPosition: bgPosition, paddingLeft: '30px' });
to
callerLabel.setStyle({backgroundImage: "url(images/pinnacleP.png)", backgroundRepeat: "no-repeat", backgroundPosition: bgPosition, paddingLeft: '30px' });
Solved! Go to Solution.
- Labels:
-
User Interface (UI)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2018 12:57 PM
Try this:(Assuming you named image as pinnacleP.png in System UI>Images )
callerLabel.setStyle({backgroundImage: "url(pinnacleP.png)", backgroundRepeat: "no-repeat", backgroundPosition: bgPosition, paddingLeft: '30px' });
Please mark my response as correct and helpful if it helped solved your question.
-Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2018 12:57 PM
Try this:(Assuming you named image as pinnacleP.png in System UI>Images )
callerLabel.setStyle({backgroundImage: "url(pinnacleP.png)", backgroundRepeat: "no-repeat", backgroundPosition: bgPosition, paddingLeft: '30px' });
Please mark my response as correct and helpful if it helped solved your question.
-Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2018 01:01 PM
Hello,
below thread may help you.
https://community.servicenow.com/community?id=community_question&sys_id=62278729db1cdbc01dcaf3231f96196b
https://community.servicenow.com/community?id=community_question&sys_id=59728feddb98dbc01dcaf3231f96192d
Thanks,
Ali
Thank you,
Ali
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2018 06:41 AM
Using this worked: url(pinnacleP.png)
Using recommended: images/icons/pinnacleP.png didn't work. Thanks for responding.