- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-20-2020 12:20 AM
Hi Team,
actually my requirement is i want to change the background of widget .
i tried with the following script in CSS
.panel-heading {
color: #fff;
background-color: #0060FF;
border-color: #0060FF;
}
but the issue it only changing the heading part , i want to change the full background.
In the above screenshot i want to change the approve button background color also , can anyone help on this.
Regards,
Chinna
Solved! Go to Solution.
- Labels:
-
Service Catalog

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-20-2020 12:42 AM
CTRL + Right Click >> "Instance In Page Editor" >> use below css in css field to change the background color.
.padder-b-none {
color: #fff;
background-color: #0060FF;
border-color: #0060FF;
}
.btn-block {
background-color: bisque;
}
.btn[name="approve"] {
background-color: red;
}
result:
If my answer helped you, kindly mark it as correct and helpful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-20-2024 03:28 AM
This solution doesnt work on employee center portal. Any idea how to fix it?