Hi, can somebody check why the submit button is not showing properly on this page?
http://www.canadianfreestuff.com/submit-a-freebie-to-canadian-free-stuff/
When I hover it is there.
Thanks
Hi, can somebody check why the submit button is not showing properly on this page?
http://www.canadianfreestuff.com/submit-a-freebie-to-canadian-free-stuff/
When I hover it is there.
Thanks
Looks like there is a style conflict, this is what is being pulled in:
[css]
div.gform_footer input.button, .enews #subbutton, .reply a, .reply a:visited, .searchsubmit, #submit {
background-color: transparent;
border: 0 !important;
color: #FB0D88;
cursor: pointer;
font-family: 'Lobster Two',arial,serif;
font-size: 18px;
line-height: 24px;
padding: 10px 0 0 0;
text-decoration: none;
text-transform: none;
border-image: initial;
}
div.gform_footer input.button {
color: white;
}
So you have white text on white background. This could be a quick fix for you, if you want to place this into your theme's stylesheet:
[css]
.gform_button {
color: #FB0D88 !important;
}
I noticed you are minifying your CSS as well, so be mindful of that in case you add this in and your stylesheet is cached.
Thank you, it worked.
Great, glad to help!