<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Form Heading CSS</title>
		<link>https://legacy.forums.gravityhelp.com/topic/form-heading-css</link>
		<description>Gravity Support Forums Topic: Form Heading CSS</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 23:19:48 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/form-heading-css" rel="self" type="application/rss+xml" />

		<item>
			<title>Richard Vav on "Form Heading CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-heading-css#post-316665</link>
			<pubDate>Tue, 11 Jun 2013 04:46:09 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">316665@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Your body #gform_wrapper_3 CSS in your custom.css is missing the following two styles&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;-webkit-border-top-left-radius: 20px;
-webkit-border-top-right-radius: 20px;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Add them in and it should be back to normal.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Richard
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gsifers on "Form Heading CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-heading-css#post-316268</link>
			<pubDate>Mon, 10 Jun 2013 22:37:29 +0000</pubDate>
			<dc:creator>gsifers</dc:creator>
			<guid isPermaLink="false">316268@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey guys,&#60;/p&#62;
&#60;p&#62;I had an issue with my site and during &#34;damage control&#34; I messed up the CSS of my form mentioned above. Any suggestions how I can fix the header &#60;a href=&#34;http://www.texashomeloanpro.com&#34; rel=&#34;nofollow&#34;&#62;http://www.texashomeloanpro.com&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Grant
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Form Heading CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-heading-css#post-283523</link>
			<pubDate>Tue, 28 May 2013 11:27:18 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">283523@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You're welcome
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gsifers on "Form Heading CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-heading-css#post-283510</link>
			<pubDate>Tue, 28 May 2013 11:21:08 +0000</pubDate>
			<dc:creator>gsifers</dc:creator>
			<guid isPermaLink="false">283510@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Perfect. Thank you gentlemen!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Form Heading CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-heading-css#post-282494</link>
			<pubDate>Tue, 28 May 2013 03:57:17 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">282494@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Grant,&#60;/p&#62;
&#60;p&#62;In your custom.css file you have the following rule&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;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;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;you need to remove or 0 the padding-top, also in custom.css you added Robs suggestion from above, change it to the following&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;body #gform_wrapper_3 h3.gform_title {
text-align: center;
width: 275px;
color: #FFFFFF;
height: 40px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Now add the following&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#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;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Your form should now look like &#60;a href=&#34;http://i.imgur.com/sxq9YB8.png&#34; rel=&#34;nofollow&#34;&#62;http://i.imgur.com/sxq9YB8.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Richard
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gsifers on "Form Heading CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-heading-css#post-281798</link>
			<pubDate>Mon, 27 May 2013 23:14:29 +0000</pubDate>
			<dc:creator>gsifers</dc:creator>
			<guid isPermaLink="false">281798@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for the quick response. I was able to add some color to the form header, but as you can see on the form here &#60;a href=&#34;http://www.texashomeloanpro.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.texashomeloanpro.com/&#60;/a&#62;, the top part of the form is still white. How to I ensure that the entire header is blue?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Grant
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Form Heading CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-heading-css#post-271193</link>
			<pubDate>Thu, 23 May 2013 14:25:47 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">271193@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;G,&#60;/p&#62;
&#60;p&#62;I see you have some custom CSS already in place, but if you want a background of blue and a text color of white you should be able to use:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body #gform_wrapper_3 h3.gform_title {
text-align: center;
width: 275px;
background-color: #0C3C60;
color: #fff;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>gsifers on "Form Heading CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-heading-css#post-271137</link>
			<pubDate>Thu, 23 May 2013 13:54:44 +0000</pubDate>
			<dc:creator>gsifers</dc:creator>
			<guid isPermaLink="false">271137@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm a total newbie running Gravity Themes in conjunction with Thesis 1.8.5 on this site &#60;a href=&#34;http://www.texashomeloanpro.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.texashomeloanpro.com/&#60;/a&#62; . I've got a simple question: how can I add color to the form-heading (top-right of homepage)? All I want is change the top section of the form to blue, and the title to white. Any suggestions?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;G
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
