What color setting controls the color of button text? It’s a submit button using WP Forms.
or
Hello,
The theme accent color handles the background of the button. You have black text on a purole background and it is no visible. You can try to make the button text color white though using this css code:
div.wpforms-container-full .wpforms-form input[type=submit], div.wpforms-container-full .wpforms-form button[type=submit], div.wpforms-container-full .wpforms-form .wpforms-page-button{
color:white;
}
You can add the code in the theme panel-> custom css box.
Thanks.
Great thanks. What else is affected by the theme accent color?
Most of the site that is not styled separately. The hover colors in genera, the header background color on header style 12, widget titles, etc. Lots of elements so that your theme can have a general theme color if not styled separately though. As most of these options have separate fields in the theme colors section and if changed, they will no longer grab the accent color.
Thank you!
I wanted to followup and say this worked.
Are there any plans to separate the accent color settings into the individual elements?
Thanks
Hi,
I couldn’t say if there are any plans to make changes to the theme colors section. There might be changes in future updates but it is not certain. I believe there are more important priorities at the moment.
You can use the browser inspector to style particular elements differently, if desired
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks
There is none unfortunately, at the moment. We try our best to implement trending features and most requested user features. All the suggestions and recommendations are placed on a list and considered carefully. However it is hard to decide what has priority and what is delayed.
the solution he gave me is specific to wpforms. you can see it in the text. I’m not sure for your situation.
@rox This should work for you – https://www.screencast.com/t/aKJdMpn22E0u
With it you can change the background color of the button, text color and border color
div.wpforms-container .wpforms-form div.wpforms-submit-container button[type=submit] {
background-color: blue;
color:white;
border: 1px solid yellow;
}
Custom CSS codes can be entered in Theme panel->Custom CSS section.