1
0
-1
2 answers
- 10-1
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; }
Add your comment... - 10-1
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.
Add your comment...
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>