Changing the colours of my text boxes, buttons and the writing in them?

  • jhbdc
    Asked on December 2, 2015 at 11:47 PM

    Hi all,

     

    How do I change the text boxes of my configurable tables text boxes to

    #1c9abd as well as my buttons. And the text in the buttons to white and the text in the text boxes to #7730c7?

     

    Thank you!

  • BJoanna
    Replied on December 3, 2015 at 4:44 AM

    Thank you for contacting us.

    You can achieve that by Injecting Custom CSS inside of Configurable list widget CSS. Add this code inside of Configurable list widget CSS:

    input[type=text]{

    background-color: #1c9abd!important;

    }

    input[type=text] {

        color: #7730c7!important;

    }

    .button, button, input[type=button], input[type=submit] {

    background: #1c9abd!important;

    color:#fff!important;}

    Changing the colours of my text boxes, buttons and the writing in them? Image 1 Screenshot 30

    After you add this code your Configurable list widget will look like this.

    Changing the colours of my text boxes, buttons and the writing in them? Image 2 Screenshot 41

    Here is my demo form: https://form.jotform.com/53361928924968? 

    Feel free to clone it.

    Hope this will help. Let us know if you need further assistance.

  • jhbdc
    Replied on December 3, 2015 at 11:54 PM

    Thank you! It worked :)

  • BJoanna
    Replied on December 4, 2015 at 3:12 AM

    You're welcome.

    Feel free to contact us if you have any other questions.