Pergunta

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

Foi útil?

Solução

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.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a sharepoint.stackexchange
scroll top