<?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: Trying to target specific input field?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/trying-to-target-specific-input-field</link>
		<description>Gravity Support Forums Topic: Trying to target specific input field?</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 18:27:52 +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/trying-to-target-specific-input-field" rel="self" type="application/rss+xml" />

		<item>
			<title>Richard Vav on "Trying to target specific input field?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/trying-to-target-specific-input-field#post-316481</link>
			<pubDate>Tue, 11 Jun 2013 01:49:00 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">316481@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks and you're welcome.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dexxwilliams on "Trying to target specific input field?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/trying-to-target-specific-input-field#post-316091</link>
			<pubDate>Mon, 10 Jun 2013 20:36:13 +0000</pubDate>
			<dc:creator>dexxwilliams</dc:creator>
			<guid isPermaLink="false">316091@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You rock Richard, thank you so much! I saw the help documentation but it felt like I was reading latin for some reason (I'm not a great computer coder guy)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Trying to target specific input field?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/trying-to-target-specific-input-field#post-315036</link>
			<pubDate>Mon, 10 Jun 2013 08:57:09 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">315036@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;There are a few ways of targeting that specific text input, you can follow the &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples#Standard_Fields&#34; rel=&#34;nofollow&#34;&#62;CSS Targeting Samples&#60;/a&#62; from the documentation which would give you&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;body .gform_wrapper .gform_body .gform_fields #field_1_16.gfield input[type=text] {&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or you can just target the input id directly&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#input_1_16 {&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Richard
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dexxwilliams on "Trying to target specific input field?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/trying-to-target-specific-input-field#post-312908</link>
			<pubDate>Sun, 09 Jun 2013 16:06:30 +0000</pubDate>
			<dc:creator>dexxwilliams</dc:creator>
			<guid isPermaLink="false">312908@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi guys, I've tried using the CSS samples in the help section, but I think I keep putting it in wrong.&#60;/p&#62;
&#60;p&#62;I have a forum where I'm trying to target one specific input field out of the rest of the customized fields on the form. &#60;/p&#62;
&#60;p&#62;The code for the form itself looks like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;body.custom .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
body.custom .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
body.custom .gform_wrapper .gform_body .gform_fields .gfield input[type=tel] {
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background-color: white;
color: #333;
border: 1px solid #CCC;
font-size: 17px!important;
box-shadow: inset 0px 0px 5px #e5e5e5;
-moz-box-shadow: inset 0px 0px 5px #e5e5e5;
-webkit-box-shadow: inset 0px 0px 5px #e5e5e5;
word-spacing: 0.4pt;
letter-spacing: 0.2pt;
color: #000000;
height: 40px;
width: 100px;
font-size: 17px!important;
line-height: 25px;
padding: 0 10px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The CSS for the input field I'm trying to target (and in this case make the background red is below):&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;ginput_container&#38;quot;&#38;gt;
&#38;lt;input name=&#38;quot;input_16&#38;quot; id=&#38;quot;input_1_16&#38;quot; type=&#38;quot;text&#38;quot; value=&#38;quot;&#38;quot; class=&#38;quot;medium&#38;quot; tabindex=&#38;quot;10&#38;quot;/&#38;gt;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Could someone share an example css of targeting this specific id in css within the string:&#60;br /&#62;
&#60;code&#62;body.custom .gform_wrapper .gform_body .gform_fields .gfield input[type=text]&#60;/code&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
