Does anybody knows how can I add two lines in a footer in SharePoint form?
I found tutorials teaching how to add two links to the footer, but I need to be able to place two notices, one under the other.
I need to add a line with this text "⚠️ Anexe apenas o formulário do fornecedor", below the other text line, this is my actual JSON:
{ "debugMode": false, "elmType": "div", "style": { "width": "100%", "text-align": "left", "overflow": "hidden", "border-top-width": "1px" }, "children": [ { "elmType": "div", "style": { "width": "100%", "padding-top": "10px", "height": "24px" }, "children": [ { "elmType": "a", "txtContent": " ⚠️ Caso trate-se de cadastro de pessoa física (CPF) não é necessário a verificação dos dados, prossiga via MDG.", "attributes": { "target": "_blank", "class": "ms-fontColor-black ms-borderColor-themePrimary ms-fontWeight-bold ms-fontSize-m ms-fontColor-neutralSecondary–hover ms-bgColor-themeLight–hover" } } ] } ] } 
