I would like to change the background color of the red framed area of the Employee Center to gray.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2024 02:03 AM
Hi,
I would like to change the background color of the red framed area of the Employee Center to gray.
I would appreciate it if you could tell me how to do this.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2024 03:52 AM
Hi
Navigate to Service portal -> Pages
Open "ec_pro_home" if its employee center
Add below to page specific CSS
#x555f5e5743d431108c5d43d488b8f2cc button {
background:gray !important;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2024 06:35 AM
Hi, @Shruti
Thank you for your reply.
I tried it and it didn't work on my instance.
Which widget's sys_id is this?
#x555f5e5743d431108c5d43d488b8f2cc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2024 10:51 PM
Try this
#x199aecc4c7a83110b1c6677703c26078 button {
background:gray !important;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2024 07:06 AM
First go to the page you want to change.
All->Service Protal->Pages
(Example: Page name “ec_dashboard”)
Then add the following to the Page Specific CSS
#homepage-search button {
background: gray;
}