Changing the colours of my text boxes, buttons and the writing in them?
- jhbdcAsked on December 02, 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!
- JotForm SupportBJoannaAnswered on December 03, 2015 at 04: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;}
After you add this code your Configurable list widget will look like this.
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.
- jhbdcAnswered on December 03, 2015 at 11:54 PM
Thank you! It worked :)
- JotForm SupportBJoannaAnswered on December 04, 2015 at 03:12 AM
You're welcome.
Feel free to contact us if you have any other questions.