Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hi,

    I’ll assume you want set the label text of a field in red, in bold, and the font size to 14px:

    1. Select the field in the form, and assign a custom class name through the attribute: “Add Css Layout Keywords”, for example: myclass.

    2. Open any of the CSS files of your website with the text editor your choice. To maintain the code organized, I’ll modify the CSS file located in: “/wp-content/plugins/calculated-fields-form/css/stylepublic.css”.

    3. Paste the following code at the end of file content:

    #fbuilder .myclass label{
    color: #FF0000 !important;
    font-weight:bold !important;
    font-size: 14px !important;
    }

    4. Finally, after edit the CSS file, clear the browser’s cache.

    The previous instructions are applied to modify the appearance of a particular field, but if you want modify the appearance of all fields, you should modify the classes definitions, existent in the “stylepublic.css” file.

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘styles, font, color’ is closed to new replies.