<?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: Help with Consistency of Input Field Borders</title>
		<link>https://legacy.forums.gravityhelp.com/topic/help-with-consistency-of-input-field-borders</link>
		<description>Gravity Support Forums Topic: Help with Consistency of Input Field Borders</description>
		<language>en-US</language>
		<pubDate>Wed, 22 Apr 2026 08:12:30 +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/help-with-consistency-of-input-field-borders" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "Help with Consistency of Input Field Borders"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/help-with-consistency-of-input-field-borders#post-54827</link>
			<pubDate>Tue, 10 Apr 2012 19:19:08 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">54827@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;No worries. Let us know if you need anything else.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dsaunderswa on "Help with Consistency of Input Field Borders"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/help-with-consistency-of-input-field-borders#post-54826</link>
			<pubDate>Tue, 10 Apr 2012 19:06:42 +0000</pubDate>
			<dc:creator>dsaunderswa</dc:creator>
			<guid isPermaLink="false">54826@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ohhhh.  Got it.  Thank you both ;D
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Help with Consistency of Input Field Borders"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/help-with-consistency-of-input-field-borders#post-54823</link>
			<pubDate>Tue, 10 Apr 2012 18:18:54 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">54823@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Your theme doesn't have the correct styles to support all the possible input types. They only included what they needed for their built in contact form apparently. You need to add the CSS snippet that Rob shared to the end of your theme stylesheet so that ALL of the possible input types are support and styled the same way. This isn't a Gravity Forms issue, it's style inheritance from your theme.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dsaunderswa on "Help with Consistency of Input Field Borders"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/help-with-consistency-of-input-field-borders#post-54820</link>
			<pubDate>Tue, 10 Apr 2012 18:13:17 +0000</pubDate>
			<dc:creator>dsaunderswa</dc:creator>
			<guid isPermaLink="false">54820@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hmmm . . . I see now that I was not clear.  The form that I created that has the inconsistent borders is one I created using Gravity Forms.  It's the Free Consultation Form.  The one that looks fine -- nice, consistent borders -- is the one that my theme offers but it's just a contact form.  I purchased Gravity Forms so that I could create forms for more than just contact info AND it looked easy.&#60;/p&#62;
&#60;p&#62;I wonder . . . are you saying that I should use the same styling code for the Gravity Form?  &#60;/p&#62;
&#60;p&#62;Thank you ;D
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Help with Consistency of Input Field Borders"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/help-with-consistency-of-input-field-borders#post-54790</link>
			<pubDate>Tue, 10 Apr 2012 15:07:50 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">54790@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Your theme has this for the styling:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
#content form input[type=&#38;quot;text&#38;quot;], #content form input[type=&#38;quot;password&#38;quot;], #content form textarea {
background: white url(images/content-form-bg.png) repeat;
border: 1px solid #D9D7D2;
padding: 5px 10px;
float: left;
clear: both;
resize: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;See how it's only targeting certain input types? If you want it to target other input types you can just update it to do so, for example replacing that with this should do the trick:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
#content form input[type=&#38;quot;text&#38;quot;], #content form input[type=&#38;quot;password&#38;quot;], #content form textarea, #content form input[type=&#38;quot;tel&#38;quot;], #content form input[type=&#38;quot;email&#38;quot;], #content form input[type=&#38;quot;url&#38;quot;] {
background: white url(images/content-form-bg.png) repeat;
border: 1px solid #D9D7D2;
padding: 5px 10px;
float: left;
clear: both;
resize: none;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>dsaunderswa on "Help with Consistency of Input Field Borders"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/help-with-consistency-of-input-field-borders#post-54789</link>
			<pubDate>Tue, 10 Apr 2012 15:04:26 +0000</pubDate>
			<dc:creator>dsaunderswa</dc:creator>
			<guid isPermaLink="false">54789@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I've created a form that looks OK except that some input fields (cell space?) are not outlined with a border and some are.  What can I do to have this look consistent?  (see link to the form below)&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://184.172.172.19/~manda1a/coaching/free-consultation/&#34; rel=&#34;nofollow&#34;&#62;http://184.172.172.19/~manda1a/coaching/free-consultation/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Here's a link to a different form created by the theme where the consistency looks very nice.&#60;/p&#62;
&#60;p&#62;Thank you.&#60;br /&#62;
;D
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
