In a Field Editor I want all the required fields to be red. Can someone let me know how I would go about achieving this?
Page 1 / 1
Hi Tami,
If it’s the field label colour that you would like to change, you can go about it by creating an “in-line” javascript resource (not snippet) and pasting in this:
(function(skuid){ var $ = skuid.$; $(document.body).one('pageload',function(){ // Sets label to red **$(".required").css("color", "red");** }); })(skuid);
The important bit is in bold.
Not sure if this is best practice but works for me!
Perfect! Thank you so much Louis.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.