Change size of customizable forms?

Hey
I have the impression that it is not possible to change the font size of the question labels of a customizable form? Do you confirm? Weird isn’t it?
:slight_smile:

I confirm! and yes should be an option.

Need for custom code? :eyes:

this sounds good to me! @matthieu_chateau is on :fire: :fire: :fire:

To be inserted in the custom code header, at page level:

<style>
#form1 .form-input-label{
  color: #000000;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 2px;
}
</style>

You can change the size, the weight, the letter spacing and the color.
You just need to change #form1 by your form ID

2 Likes

I looove it :beers: thanks Matthieu