-
ken_marencoAsked on July 15, 2020 at 2:08 PM
Why can't I replace the label in a date format from english to french (see screen shot below)
Thanks
-
KrisLeiReplied on July 15, 2020 at 7:05 PM
Unfortunately, there's no direct option yet to change the Birth Date Picker widget's sub-labels on the Form Builder but you can inject these CSS codes on your form as a workaround in the meantime:
label#sublabel_75_day, label#sublabel_75_month, label#sublabel_75_year {
font-size: 0px;
}
label#sublabel_75_day:after {
content: "Journée";
font-size: 13px !important;
}
label#sublabel_75_month:after {
content: "Mois";
font-size: 13px !important;
}
label#sublabel_75_year:after {
content: "An";
font-size: 13px !important;
}
For reference: How-to-Inject-Custom-CSS-Codes
Here's the result:
I hope this helps. Let us know if you need further assistance.