Hi, I have gravity forms and I’m trying to update the color styles. I read the gravity forms doc and it says it uses the theme styles. I got most of them but a few I’m unable to get with the enfold settings:
1. (Required) I woiuld like to be #AEFB47 – there are lots of these.
2. Section titles (APPLICANT INFORMATION, SPOUSE/PARTNER INFORMATION, BUSINESS/MANAGEMENT GOALS & OBJECTIVES, ETC) I woiuld like to be #AEFB4 – is there also a way to make this text larger?
3. the submit button text i need black
4. how do I remove the form title? The Title is RFC at the top
Hey chrisc121,
I can’t see a form on the page you linked to, could you post a link to where we can see the actual form please?
Best regards,
Rikard
Yes. sorry. see private
Hi,
Please add the following CSS codes in Enfold > General Styling > Quick CSS:
1. (Required) I woiuld like to be #AEFB47 – there are lots of these.
#top .gfield_required {
color: #AEFB47;
}
2. Section titles (APPLICANT INFORMATION, SPOUSE/PARTNER INFORMATION, BUSINESS/MANAGEMENT GOALS & OBJECTIVES, ETC) I woiuld like to be #AEFB4 – is there also a way to make this text larger?
#top .gsection_title {
color: #AEFB47;
font-size: 32px;
}
Just adjust the font size as you see fit (default size is 20px).
3. The submit button text i need black
#top .gform_wrapper .gform_button {
color: black;
}
4. How do I remove the form title? The Title is RFC at the top
#top .gform_heading .gform_title {
display: none;
}
Hope this helps :)
Best regards,
Nikko