I would like to darken the background of the fields section

  • SunbridgeInstitute
    Asked on December 4, 2015 at 12:14 PM
    Also, I would like to darken the background of the fields section a little, but I can't figure out how to do that. Can you show me?
  • KadeJM
    Replied on December 4, 2015 at 12:45 PM

    As for your question here about darkening the background of the fields section are you referring to the "field inputs" that the user would enter their information into?

    Or are you talking about something else perhaps?

    Can you please confirm or clarify? So we can assist you properly with this question you have.

    I would like to darken the background of the fields section Image 1 Screenshot 30

    If that is what you are talking about there is an option for this in the Form Designer to change that.

    I would like to darken the background of the fields section Image 2 Screenshot 41

    Alternatively again, you can do the same with injected css and here is the code below for that.

    .form-textbox {

        background-color : #353839;

    }

  • SunbridgeInstitute
    Replied on December 4, 2015 at 12:47 PM

    Actually I am talking about the overall whole section where the fields are (not the background). You can see that I managed to give an orange tint to the header portion, and the other sections are transparent black. But I can't seem to make that transparency any more opaque. Does this make sense? Thank you!

  • jonathan
    Replied on December 4, 2015 at 2:05 PM

    You can increase the background-color of Form-All like this...

    I would like to darken the background of the fields section Image 1 Screenshot 20

     

    Can you please try this CSS code

    .supernova .form-all, .form-all {

        background-color: rgb(39, 38, 38);

    }

     

    Hope this help. Let us know how it goes.