1
0
-1

How to change the background color of a form's section.

  1. A Section is subdivided into Columns and how to change those colors.
  2. How to Change the color of individual fields not just the Label, but Label plus Text.

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>


    CommentAdd your comment...

    2 answers

    1.  
      1
      0
      -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;
      }
        CommentAdd your comment...
      1.  
        1
        0
        -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.

          CommentAdd your comment...