Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Hi, it is depend on how you override the css rules. There may have some css rules has higher precedence than your, then you will have to either add `!important` or modified your selector to make it more higher precedence.
Example:
body #form-canvas div#section1 { border: 5px outset red; background: black; text-align: center; }
Hi, you can use the browser to inspect and identify the CSS to change, for example this is the reference for Chrome https://developers.google.com/web/tools/chrome-devtools/css#view.
How to change the background color of a form's section.
Tried using Custom HTML It does not work . Any help would be appriciated.
<style type="text/css">
.section1 {
border: 5px outset red;
background-color: black;
text-align: center;
}
</style>