Hello,
I've recently purchased 'gravity forms'. I have added a form to contact page but the email box looks different to the others. I can't work out what to do. Any advice appreciated. http://yogaleicester.co.uk/contact/
Zoe
Hello,
I've recently purchased 'gravity forms'. I have added a form to contact page but the email box looks different to the others. I can't work out what to do. Any advice appreciated. http://yogaleicester.co.uk/contact/
Zoe
Your theme's stylesheet has:
[css]
input[type="text"], textarea {
background: #FAFAFA url(images/field_bkg.png) repeat-x;
padding: 10px;
font-family: "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
color: #6A6A6A;
border: 1px solid #DDD;
background: #FAFAFA url(images/field_bkg.png) repeat-x;
}
It's only targeting certain types of inputs, try replacing it with this:
[css]
input[type="text"], textarea, input[type="tel"], input[type="email"], input[type="url"] {
background: #FAFAFA url(images/field_bkg.png) repeat-x;
padding: 10px;
font-family: "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
color: #6A6A6A;
border: 1px solid #DDD;
background: #FAFAFA url(images/field_bkg.png) repeat-x;
}Do I post the above into the CSS Stylesheet?
Thank Zoe
You would put the new CSS rules at the very end of your active theme's stylesheet. It's usually a style.css file in your theme directory but could be custom.css or something else.
If you're not sure where to add custom CSS rules, then you'll want to consult your theme developer and ask them where the recommended place to add them is.