Question

visibility of mandatory fields

I would like to ask if it is in any kind possible to make the visibility of mandatory fields in the system better.

For users the little red star "*" next to the requested value is not straight forward and they would like to highlight them for example in a colour. Maybe something like that:

Like 1

Like

4 comments

You can add the following CSS: 

.t-label-is-required {
    color: red !important;
}

This will have the following result:

To see how to add the CSS to a page, see here. For adding it globally so it applies to all pages, see here.

Ryan

Dear Ryan is it also possible on Freedom pages? how?

Julio.Falcon_Nodos,

Yes, for Freedom UI pages, the CSS would look like this: 

label.crt-input-label.crt-input-required {
    color: red !important;
}

Ryan

Ryan Farley,

Thanks Ryan

Show all comments