How to change font type, font size of the field in the form(s)

オンライン

Hi everyone,

What is the easiest way to maintain font type, font size, font weight, font color on the field of the forms (not the label)? We have many forms that we need to modify and want to know how to do the mass update of the font, for example from Arial to Tahoma-Bold-Black

Appreciate any feedbacks. 

Thanks!

Parents
  • I agree to Kamrans idea of using Field CSS and Form CSS whenever possible. You can use your own stylesheet, so you only need to add one line of code!

    @import url("../styles/default.css");
    @import url("../customer/myStyles.css")

    Do you really need to change the design of everything? Or just the stuff relevant for end users? You can overwrite the style on general level, but it will not always look great. Check out the default.css stylesheet. It might be possible to create subclasses for the existing classes. Like

    input .name {

    }

  • オンライン in reply to AngelaIp

    Thanks Angelalp for the input. 

    I don't change the design, only need to change the 'text field' setting. Currently, some of the text color is grey (inconsistent) and the background is light grey. We want to change this setting with other color to make it easier to read, for example black (maybe bold) tahoma, instead of arial. 

  • オフライン in reply to LKar

    Angela made a good point. You can use your own css files. 

    You may also want to look at the styles in ... \Innovator\Client\styles

    You can probably make a single change in the right place and have it all changed at once. 

  • オンライン in reply to kaftab

    Cool. Thanks to you both! I will try it and let you know the result asap. 

Reply Children