I know I can change the color of a .panel-title, but I haven't found the code to change the .input-label color.
This works:
<panel id="panel2">
<title>title</title>
<input type="text" token="commentpicker">
<label>Add any additional comments below</label>
<default></default>
</input>
<html>
<style>
#panel2 .dashboard-panel .panel-title {
color: #EC102B;
}
</style>
But this won't
<input type="multiselect" token="newenabledpicker" searchWhenChanged="false" id="input1">
<label>Modify or Disable (REQUIRED)?</label>
<choice value="modify">Modify</choice>
<choice value="disable">Disable</choice>
<delimiter> </delimiter>
</input>
<html>
<style>
#input1 .dashboard-panel .input-label {
color: #EC102B;
}
</style>
</html>
Can you please try this?
<style>
#input1 label {
color: #EC102B;
}
</style>
I hope this will help you.
Thanks
KV
If any of my replies help you to solve the problem Or gain knowledge, an upvote would be appreciated.
Can you please try this?
<style>
#input1 label {
color: #EC102B;
}
</style>
I hope this will help you.
Thanks
KV
If any of my replies help you to solve the problem Or gain knowledge, an upvote would be appreciated.
That did the trick. Thank you.