Changing the message for: "*" indicates required fields and right aligning

I would like this to just say *REQUIRED. I would also like it to appear on the right side not the left… how do I effect this?

TY!

You can use this filter to change the text:

If you want it on the right side instead of the left, you can use CSS. Something like this might work:

.gform_required_legend {
    text-align: right;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.