Hello,
Is there a way to change the color of the “* Required field” text? By default the Red in my master single view form is different shade of red than the same text in detail grid view form.
Thank you for any response
Hello,
Is there a way to change the color of the “* Required field” text? By default the Red in my master single view form is different shade of red than the same text in detail grid view form.
Thank you for any response
ex. to put it in green add this code in onScriptInit
?>
// onScriptInit
<style>
.scFormRequiredOddColor{
color: green !important;
}
.scFormRequiredOdd{
color: green !important;
}
</style>
<?php