WP Forms Submit Button Text Color

Posted in: Newspaper
Post count: 376

What color setting controls the color of button text? It’s a submit button using WP Forms.

http://ibb.co/jLXcUR

or

http://www.interestinganswers.com/contact/

Post count: 22421

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.

Post count: 376

Great thanks. What else is affected by the theme accent color?

Post count: 22421

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!

Post count: 376

I wanted to followup and say this worked.

Are there any plans to separate the accent color settings into the individual elements?

Thanks

Post count: 20688

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

Post count: 376

thanks. is there a road map somewhere?

Post count: 20688

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.

Post count: 376

thx

Post count: 43

We are trying the same with the code. Changing the submit button’s text color to white through adding this code in custom css in Theme Panel (Newspaper – black theme, WP Forms Contact Form plugin), it is not working.

Any thoughts ?

Post count: 376

the solution he gave me is specific to wpforms. you can see it in the text. I’m not sure for your situation.

Post count: 20688

@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.

Viewing 12 posts - 1 through 12 (of 12 total)
The forum ‘Newspaper’ is closed to new topics and replies.