frankokker
Member
Posted 3 months ago #
I've used contact form 7 on two different places on my website.
- The contact page
- And a page (only available when your logged in, same idea as contact)
At the contactpage its working just fine, but on the other the submit button isnt showing. I can tell its there but just not visible (I can click)
Thanks in advance!
http://wordpress.org/extend/plugins/contact-form-7/
frankokker
Member
Posted 3 months ago #
my bad... THe website link:
http://okker.nl/veldhuizen/
I can't post the fault page since you need to be logged in. I hope this isnt a problem.
frankokker
Member
Posted 3 months ago #
Fixed it myself. For the ones still searching for an answer:
plugins -> editor
Find the submit.php file
Added a class to the following line:
$html = ' <input type="submit" value="' . esc_attr( $value ) . '" />';
Like this:
$html = ' <input class="red" type="submit" value="' . esc_attr( $value ) . '" />';
In my case red was the classname used by the default theme buttons.
So I guess just the link to the correct picture was missing :) Hope this helps others