-
Dana M StillwagonAsked on May 7, 2025 at 7:16 PM
Can someone recommend a CSS code to change the color of the "add" button? With the default being gray, respondents think it is inaccessible (of course they don't try first).
-
Raymond JotForm SupportReplied on May 8, 2025 at 12:26 AM
Hi Dana,
Thanks for reaching out to Jotform Support. We can change the background color of the add row button in the configurable list widget by using a few CSS codes. Let me show you how:
1. First, copy this code:
/* change add row button bg color - 26806091*/
#listContainer .add {
background: red;
}
#listContainer .add:hover {
background: orange;
}
/* Ends here */
2. Next, in Form Builder, click on the Configurable List widget and on the Wand icon next to it.
3. Then, click on the Custom CSS box, paste the codes there and click on the Update button.
Give it a try and let us know if you need any help.
-
danamstillwagonReplied on May 8, 2025 at 8:40 AM
Thanks for your help. I actually found a code right after I posted my question. It's not the same as yours but it worked.
.add{
font-weight: bold !important;
background: #367c96 !important;
}
-
Reban JotForm SupportReplied on May 8, 2025 at 9:06 AM
Hi Dana,
We're glad to hear that you were able to achieve your desired result using your CSS code. Keep in mind that CSS can often be written in different ways to produce the same output, so variations in the code are completely normal. We'll take note of your solution and consider it as a helpful reference in case other users encounter a similar issue.
Let us know if there’s anything else we can do for you.
Your Answer
Something Went Wrong
An error occurred while generating the AI response. Please try again!