Move the asterisk for required questions?

Hello,

I would like to move the asterisk marking a question as 'required' to the front of the question text instead of the end. Is there a way to do this?

Thanks,
Mike M.

Dear @mmendes,
Please, try adding the following code to CSS editor on the form:

.fd-form .fd-required:before {
    content: '*';
    color: #FF0039;
}
.fd-form .fd-required:after {
    content: ''!important;
}

Thanks @Nikita_Kurguzov ! That worked perfectly.

1 Like