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
  • オフライン

    Thanks kaftab for the input!

    I used this CSS:

    .sys_fn_name
    {
    background-color: green:
    }

    .name
    {
    font-size: 8pt;
    font-family: tahoma, arial;
    font-weight: bold;
    background-color: yellow;
    }

    It works but there are hundreds of forms that I need to modify. Do I need to update it manually for each form or is there a way to update the code tree for all forms.

Reply
  • オフライン

    Thanks kaftab for the input!

    I used this CSS:

    .sys_fn_name
    {
    background-color: green:
    }

    .name
    {
    font-size: 8pt;
    font-family: tahoma, arial;
    font-weight: bold;
    background-color: yellow;
    }

    It works but there are hundreds of forms that I need to modify. Do I need to update it manually for each form or is there a way to update the code tree for all forms.

Children