Hi Grant,
In your custom.css file you have the following rule
body #gform_wrapper_3 {
-moz-border-radius-topleft: 20px;
-moz-border-radius-topright: 20px;
-moz-border-radius-bottomleft: 20px;
-moz-border-radius-bottomright: 20px;
-webkit-border-top-left-radius: 20px;
-webkit-border-top-right-radius: 20px;
-webkit-border-bottom-left-radius: 20px;
-webkit-border-bottom-right-radius: 20px;
background: #FFFFFF;
width: 275px;
padding-top: 12px;
margin-top: 55px;
border: 1px solid #d9d9d9;
box-shadow: #333333 0px 10px 10px;
-moz-box-shadow: #333333 0px 10px 10px;
-webkit-box-shadow: #333333 0px 10px 10px;
}
you need to remove or 0 the padding-top, also in custom.css you added Robs suggestion from above, change it to the following
body #gform_wrapper_3 h3.gform_title {
text-align: center;
width: 275px;
color: #FFFFFF;
height: 40px;
}
Now add the following
#gform_wrapper_3 .gform_heading {
background-color: #0C3C60;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
width: 100%;
margin-top: 0;
padding-top: 10px;
}
Your form should now look like http://i.imgur.com/sxq9YB8.png
Regards,
Richard
Posted 11 years ago on Tuesday May 28, 2013 |
Permalink