Question

Good Morning Again;

I have built a custom form using SPD 2013 OP with SPD2013.

When you enter a description in the custom list settings, the description displays under the input box on the custom form.

What is the attriube / element to modify the font / style of this text?

Thanks

Était-ce utile?

La solution

You should be able to change the font of the field's description on the new or edit form with this css (this just changes the font color to red, so tweak it according to your needs):

<style>
.ms-formbody > .ms-metadata
{
 color: red;
}
</style>

If you want to apply the changes only on some fields' description, you can do that with javascript.

Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top