Change the color of the button on Service Portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2022 11:10 AM
Want to change the color of the 'submit' button of the Record Producer in the Service portal.
Please help.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2022 11:13 AM
This link should point you in the right direction
If this resolved your issue, please mark this correct and helpful, thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2022 11:16 AM
Hi Karthik,
1)You can try doing DOM manipulation(NOT RECOMMENDED) by adding a onload client script on your RP.
Something like below should help
document.getElementById('submit').style.backgroundColor = 'red' ;
2)You will have to add page specific css which will update the color of that button
.btn-primary {
background-color: red !important;
}
Please mark correct/helpful if applicable.
Regards,
Shubham
Shubham Tipnis
ServiceNow Enthusiast
⭐️ 3x Rising Star (2022–2024) – ServiceNow Community
Sharing insights, use cases & real-world learnings from the Now Platform
Always learning. Always building.