I am trying to make this form look like this design (first image is design second image is current form). Here are my current struggles:
- Choice Section
- color of choice text.
- Is it possible to add a background around the title for the choice section?
- is it possible to make the checkbox outline only?
- File Upload
- can I change the copy of the file upload?
- Changing the background color of the file upload section.
- changing the text color of the file upload.
THANK YOU FOR YOUR HELP!
1 Like
Max
4
Hello there, @Joshua_Stanley 
Sure, we’ll be happy to help!
Choice section
- Please add this code to the Custom CSS field on the Appearance tab of your widget’s settings:
.es-choice-option-item-label {
color: black;
}
- Here is a CSS code a background to the Choice section title:
.es-field-layout-label {
background-color: #000;
width: fit-content;
padding: 12px;
}
- Could you please elaborate on what you mean under “outline only”?
File upload
-
I am afraid I didn’t quite get what you mean under changing the copy of the file upload. Could you please describe your idea in more detail?
-
This CSS code will do the trick:
[class*="File__Container-sc"] {
background-color: black;
}
- Please use this CSS code to change the color of the File upload label"
[class*="File__Text-sc"] {
color: white;
}
1 Like