How do we increase the space on the form to have the text further away from the edge?

  • Aaardvaark
    Asked on September 22, 2015 at 10:56 AM
    b) how do I increase the area of green around the form - now the text is nearly flush against the green left edge with almost no padding, how do I get padding back on green background please?
  • Ben
    Replied on September 22, 2015 at 11:11 AM

    To increase the space between the text and the border, all that we should do is to apply some padding.

    To do that, you should add the following CSS code:

    div.form-all ul {
        padding: 0 20px;
    }

    This will move it from the left and the right for 20px, but you can change 20 to any other value if you wish instead until you have the padding that you are most satisfied with.

    You add this code in the same location as the previous two codes: Inject Custom CSS Codes