- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-11-2019 03:27 AM
Hi folks,
Does anybody know how/if the messages displayed in the Service Portal, i.e. the confirmation pop up boxes can be altered or overwritten?
I'd ideally like to change colour/font. If not possible to overwrite at the SP level, can something be done globally?
Here's an example of one of the messages that appears at the top of a page when not completing a mandatory field on a record producer/cat item that I'd like to change.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-11-2019 05:11 AM
Hi,
You can do that on the page level by overriding the alert class.
Add the below CSS in your page specific CSS in your page:
.alert-danger {
color: orange;
background-color: rgb(253, 247, 247);
border-color: rgb(217, 83, 79);
}
The alert message is now changed ti orange color.
Note: Please mark it correct or helpful if it works!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-11-2019 06:51 AM
Perfect! Just what I needed, Thanks!
Do you happen to know if there's anyway to apply this at a portal level also?