I am using SharePoint Designer to load a list form web part and want to modify some colors in newform.aspx.
I right-click on this object, go to Properties -> Formatting but can't change anything. What would be the reason?
I am using SharePoint Designer to load a list form web part and want to modify some colors in newform.aspx.
I right-click on this object, go to Properties -> Formatting but can't change anything. What would be the reason?
ListFormWebPart は、フォームを自動生成する Web パーツであり、カスタマイズすることはできません。
CSS を使用してスタイルを設定する必要があります。CssClass プロパティを使用してクラスを指定できます (コード内)。
<WebPartPages:ListFormWebPart CssClass="my-style"
...次に、CSS ルールを使用してフォーム要素をターゲットにします
.form-style table.ms-formtable td.ms-formbody { background: color }