<?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: Beginner Question CSS / Stylesheets Etc.</title>
		<link>https://legacy.forums.gravityhelp.com/topic/beginner-question-css-stylesheets-etc</link>
		<description>Gravity Support Forums Topic: Beginner Question CSS / Stylesheets Etc.</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 11:50:27 +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/beginner-question-css-stylesheets-etc" rel="self" type="application/rss+xml" />

		<item>
			<title>David Peralty on "Beginner Question CSS / Stylesheets Etc."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/beginner-question-css-stylesheets-etc#post-55677</link>
			<pubDate>Wed, 18 Apr 2012 11:36:24 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">55677@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Glad Rob was able to sort all that out for you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jphogan on "Beginner Question CSS / Stylesheets Etc."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/beginner-question-css-stylesheets-etc#post-55675</link>
			<pubDate>Wed, 18 Apr 2012 11:25:17 +0000</pubDate>
			<dc:creator>jphogan</dc:creator>
			<guid isPermaLink="false">55675@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Perfect! Thank you!&#60;br /&#62;
And thanks for including those links.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Beginner Question CSS / Stylesheets Etc."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/beginner-question-css-stylesheets-etc#post-55666</link>
			<pubDate>Wed, 18 Apr 2012 10:46:55 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">55666@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Drop Downs in HTML are referred to as a &#34;select&#34; element. So you can target it via:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.gform_wrapper select {}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Here is our documentation on our selectors and such:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Design_and_Layout&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Design_and_Layout&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;For a general guide you could reference this page which has a bunch of stuff on it:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/other-resources/&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/other-resources/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jphogan on "Beginner Question CSS / Stylesheets Etc."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/beginner-question-css-stylesheets-etc#post-55663</link>
			<pubDate>Wed, 18 Apr 2012 10:41:48 +0000</pubDate>
			<dc:creator>jphogan</dc:creator>
			<guid isPermaLink="false">55663@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Your solution worked perfectly, however I am now doing another form and the State drop-down and another custom drop-down aren't affected by this. What input type (ex. &#34;tel&#34;, &#34;password&#34;) do I need to use to target those? Is there a list somewhere online with the input types? Thanks again for your help. &#60;/p&#62;
&#60;p&#62;See form here: &#60;a href=&#34;http://iamsinc.com/blog/academyregistration/&#34; rel=&#34;nofollow&#34;&#62;http://iamsinc.com/blog/academyregistration/&#60;/a&#62; (State and &#34;Marketer&#34; drop-down are white rather than gray)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Beginner Question CSS / Stylesheets Etc."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/beginner-question-css-stylesheets-etc#post-54662</link>
			<pubDate>Mon, 09 Apr 2012 16:46:41 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">54662@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That's due to your theme:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
input[type=&#38;quot;text&#38;quot;], input[type=&#38;quot;password&#38;quot;], textarea {
background: #FAFAFA;
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
border: 1px solid #DDD;
color: #888;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It's only targeting inputs with the type of text and password. You can extend that to allow for the other input types if you wish. For example, the phone input is type=&#34;tel&#34; and the email is type=&#34;email&#34;. So you can just adjust your theme's styles accordingly.&#60;/p&#62;
&#60;p&#62;As for the other piece, you should be able to add padding to the wrapper to provide some cushion.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jphogan on "Beginner Question CSS / Stylesheets Etc."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/beginner-question-css-stylesheets-etc#post-54642</link>
			<pubDate>Mon, 09 Apr 2012 13:20:56 +0000</pubDate>
			<dc:creator>jphogan</dc:creator>
			<guid isPermaLink="false">54642@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Also, can you tell me why it seems like the Phone Number and Email Address fields are outlined and have a white fill while the Name and Additional Comments don't seem to be outlined and seem to have a gray fill? Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jphogan on "Beginner Question CSS / Stylesheets Etc."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/beginner-question-css-stylesheets-etc#post-54641</link>
			<pubDate>Mon, 09 Apr 2012 13:15:31 +0000</pubDate>
			<dc:creator>jphogan</dc:creator>
			<guid isPermaLink="false">54641@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The way the form is inside the gray wrapper now, everything starts immediately at the left margin. I would like to see what it looks like centered in the gray box and/or pad some of the margins on the left-hand side so it's not right on the border. Thank you again
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Beginner Question CSS / Stylesheets Etc."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/beginner-question-css-stylesheets-etc#post-54443</link>
			<pubDate>Fri, 06 Apr 2012 09:52:21 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">54443@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Correct, you can just change the ID number and then hex color.&#60;/p&#62;
&#60;p&#62;Can you sketch out your ultimate goal for the form in terms of the alignment. I mean you can use padding/margin on various elements to push things off to the right.&#60;/p&#62;
&#60;p&#62;You could also you the left align label placement to take up some more of the space.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jphogan on "Beginner Question CSS / Stylesheets Etc."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/beginner-question-css-stylesheets-etc#post-54412</link>
			<pubDate>Thu, 05 Apr 2012 18:11:55 +0000</pubDate>
			<dc:creator>jphogan</dc:creator>
			<guid isPermaLink="false">54412@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You're absolutely right. Thanks for pointing that out. &#60;/p&#62;
&#60;p&#62;In the future, if I want to add a custom color to another form, do I simply change the number on the #gform_wrapper line to match the ID number of the form? &#60;/p&#62;
&#60;p&#62;Also, what do I need to do so the text of the form and the fields aren't right on the left-hand side of the box. I appreciate your help. Thank you
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Beginner Question CSS / Stylesheets Etc."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/beginner-question-css-stylesheets-etc#post-54408</link>
			<pubDate>Thu, 05 Apr 2012 17:36:17 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">54408@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;No problem at all, glad to help out. It looks like you must be cached, I can see your changes alright:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://grab.by/cXsU&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/cXsU&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
