I checked your site. First, you have added your custom styles to Contact Form 7’s stylesheet file. It is a bad practice because they will be removed when the plugin is updated. You should add custom styles to your theme’s stylesheet instead.
When I checked the stylesheet, the style was not as you wrote above. It was
.submit_button {
color: white; <-- change this to your color
font-size: 0px;
float:left;
width: 135px; <-- change this to your button image width
height: 60px; <-- change this to your button image height
border:none;
margin: 0px;
padding: 5px;
background: url(./images/submit.png) 0 0 no-repeat;
}
I found some lines using incorrect CSS syntax, for example,
<-- change this to your button image width
those can’t be work as comments and break the CSS. I suppose that those mistakes made border:none; setting disabled.
Thank you Takayuki!
You were right, that did remove the gray border but also removed my text!
Also, for some reason the ‘submit button action’ is relegated to the upper half of the button.
So much appreciate your assistance!
Happy new year!
mj
Figuring the css bit out Taka. However, my sent message is not visible, and the email message contains no information, simply this:
From: [your-name] <[your-email]>
Subject: [your-subject]
Message Body:
[your-message]
Thanks for letting me know about where to place the css. Moved to my theme style sheet.