Page 1 of 1

New form calculated field fdcontrol border

Posted: 22 Oct 2021
by TWendt
Hi,

is it possible to show a border around a calculated field in the new form?

Best wishes
Tom

Re: New form calculated field fdcontrol border

Posted: 26 Oct 2021
by mnikitina
Hello Tom,

You can customize the appearance of any element on the form using CSS.

1. Add a class to the element, e.g. 'calc'
css.png
css.png (6.73 KiB) Viewed 57744 times
2. Add a CSS to the editor:

Code: Select all

.calc .ms-formbody.fd_control {
    border: solid red;
}