- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2019 02:10 PM
I am trying to change color of field label and "options" in an order guide. i have done this in past for other pages using CSS part of the widget. which CSS properties i should be using?
Thanks
Solved! Go to Solution.
- Labels:
-
Service Portal Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2019 03:44 PM
To change the color of variable field labels, i tried this option (this would apply throughout the site though).

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2019 07:01 PM
for options override the below css property in your widget
.options {
color: $primary;
}
for labels:
span.text-muted.m-l-sm.step-text{
color: ff34fe;
}
the above should work
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2019 09:09 AM
this one didn't work
span.text-muted.m-l-sm.step-text{
color: ff34fe;
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2019 10:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2019 11:06 AM