SharePoint form add border to fields in display form

Hello Team,

How to add border to only fields and not column titles in display form in Plumsail?

Thanks,

Dear @pkp,
Just add a Class to the field, for example, my-field, and then use it in CSS editor like this:
image

.my-field .fd-field-control{
  border: 1px solid black;
}
1 Like