Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author codepeople

    (@codepeople)

    Hi,

    Yes of course, you simply should assign to the field a class name (for example: my-class), and define the new style into a CSS file used by your website, or you can insert a “HTML Content” field in the form with a pair of <style></style> tags as its content.

    <style>
    .my-class fieldset{border: 2px solid #CCCCCC !important;}
    </style>

    If you are needing a custom design, I can offer you a custom coding service through my personal website:

    https://cff.dwbooster.com/customization

    Best regards.

    Thread Starter norganics

    (@norganics)

    Great. That works. Is there a way to do the same to just the field border where the values or calculations occur? Not the field and field label combined…just the box where values appear.

    Plugin Author codepeople

    (@codepeople)

    Hi,

    Yes of course, but in this case you should apply the style to input tag:

    <style>
    .my-class input{border: 2px solid #CCCCCC !important;}
    </style>

    Best regards.

    Thread Starter norganics

    (@norganics)

    That creates a border around the entire field (field label and all). I’m trying to highlight just the small, medium, or large box where values are entered or calculations appear.

    Plugin Author codepeople

    (@codepeople)

    Hi,

    Not really, using the the selector: .my-class input, will apply the styles only to input fields into the element with the class name: my-class assigned.

    Best regards.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Color and thickness of Fieldset border’ is closed to new replies.