tjswarbs
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Input text is same color as backgroundHi,
You’re using Ninja forms as opposed to Contact Form 7? Either way the forms use theme / WordPress styling so the color is being pulled from the backend.
Quick fix, use
input#nf-field-60 { color: red; }in your css panel
Hope that helps a little
TJ
*ADDITION*
I read the question wrong. Code I gave changes submit button text color
input {color: red;} textarea {color: red;}will color the input text red
Forum: Plugins
In reply to: [Contact Form 7] spacing between the reCaptchabox and the send buttonHi there,
A link to a live page may be needed to give exact help.
The submit button has a class of .wpcf7-submit so using something like
.wpcf7-submit {margin-top:20px;}If using a theme add it to the custom css panel and should move the button down. Replace the 20px for the value you need.
You could add some code to the actual form by wrapping the submit button code in a div and styling.
<div style="margin-top:20px;">[submit "Submit"]</div>Hope that helps a little
TJ
Forum: Plugins
In reply to: [Contact Form 7] Adding file – no submitHi there,
When adding the code for which file to attach you need to use Name rather than the form-tag
try [CV]
Hope that helps
TJ