Required text is different color

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.

Single row vs grid

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
1 Like