<?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: Kevin Flahaut&#039;s tips for css targeting specific elements not working on my check</title>
		<link>https://legacy.forums.gravityhelp.com/topic/kevin-flahquts-tips-for-css-targeting-specific-elements-not-working-on-my-check</link>
		<description>Gravity Support Forums Topic: Kevin Flahaut&#039;s tips for css targeting specific elements not working on my check</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 01:26:43 +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/kevin-flahquts-tips-for-css-targeting-specific-elements-not-working-on-my-check" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "Kevin Flahaut&#039;s tips for css targeting specific elements not working on my check"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/kevin-flahquts-tips-for-css-targeting-specific-elements-not-working-on-my-check#post-38376</link>
			<pubDate>Wed, 19 Oct 2011 19:10:51 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">38376@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;My pleasure. You're very welcome.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>waujaneju on "Kevin Flahaut&#039;s tips for css targeting specific elements not working on my check"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/kevin-flahquts-tips-for-css-targeting-specific-elements-not-working-on-my-check#post-38371</link>
			<pubDate>Wed, 19 Oct 2011 17:47:35 +0000</pubDate>
			<dc:creator>waujaneju</dc:creator>
			<guid isPermaLink="false">38371@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks, Kevin!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Kevin Flahaut&#039;s tips for css targeting specific elements not working on my check"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/kevin-flahquts-tips-for-css-targeting-specific-elements-not-working-on-my-check#post-38263</link>
			<pubDate>Wed, 19 Oct 2011 02:48:15 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">38263@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Style support for checkboxes and radio inputs is very limited and varies quite a bit by each browser. The border style is only supported in a few. You're rule is being applied properly, but the browser is simply ignoring it for the checkbox control.&#60;/p&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://bit.ly/qcWvtt&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/qcWvtt&#60;/a&#62; ( see the highlighted CSS rule being applied )&#60;/p&#62;
&#60;p&#62;reference: &#60;a href=&#34;http://www.456bereastreet.com/lab/styling-form-controls-revisited/checkbox/&#34; rel=&#34;nofollow&#34;&#62;http://www.456bereastreet.com/lab/styling-form-controls-revisited/checkbox/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I'll revisit the samples in the documentation and see about changing that. The border property was simply a random example, but I can see that it might be misleading given the constraints of styling the checkbox inputs.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>waujaneju on "Kevin Flahaut&#039;s tips for css targeting specific elements not working on my check"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/kevin-flahquts-tips-for-css-targeting-specific-elements-not-working-on-my-check#post-38260</link>
			<pubDate>Wed, 19 Oct 2011 01:29:19 +0000</pubDate>
			<dc:creator>waujaneju</dc:creator>
			<guid isPermaLink="false">38260@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Following the advice provided by Kevin Flahaut on this page: &#60;a href=&#34;http://www.rocketgenius.com/gravity-forms-css-targeting-specific-elements/&#34; rel=&#34;nofollow&#34;&#62;http://www.rocketgenius.com/gravity-forms-css-targeting-specific-elements/&#60;/a&#62;&#60;br /&#62;
I added the following code to my wordpress css:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
/* gravity forms text field */
    body .gform_wrapper .gform_body .gform_fields .gfield input[type=text] { border:1px solid #dddddd; background-color:#f8f9fb; }

    /* gravity forms drop-down (select) field */
    body .gform_wrapper .gform_body .gform_fields .gfield select {border:1px solid #dddddd; background-color:#f8f9fb; }

    /* gravity forms textarea field */
    body .gform_wrapper .gform_body .gform_fields .gfield textarea {border:1px solid #dddddd; background-color:#f8f9fb; }

    /* gravity forms checkbox inputs */
    body .gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox li input[type=checkbox] {border:1px solid #aec1d2;}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It worked perfectly EXCEPT the checkbox inputs, as you can see here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://dev12.campaignadvantage.com/action/volunteer/&#34; rel=&#34;nofollow&#34;&#62;http://dev12.campaignadvantage.com/action/volunteer/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;So I tried Kevin's original code example in my css, which should have made the checkbox input borders red, but it didn't.  Could you please help me figure out why Kevin's code does not appear to be working for my checkbox inputs, even though its working perfectly for the other fields?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
