<?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: CSS help - how to change the size of a box</title>
		<link>https://legacy.forums.gravityhelp.com/topic/css-help-how-to-change-the-size-of-a-box</link>
		<description>Gravity Support Forums Topic: CSS help - how to change the size of a box</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 12:46:14 +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/css-help-how-to-change-the-size-of-a-box" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "CSS help - how to change the size of a box"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-help-how-to-change-the-size-of-a-box#post-31942</link>
			<pubDate>Sat, 06 Aug 2011 19:44:30 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">31942@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Great news. Looks like you whipped up some good specific CSS to override other styles. Very nicely done.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Gil Namur on "CSS help - how to change the size of a box"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-help-how-to-change-the-size-of-a-box#post-31933</link>
			<pubDate>Sat, 06 Aug 2011 17:44:27 +0000</pubDate>
			<dc:creator>Gil Namur</dc:creator>
			<guid isPermaLink="false">31933@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;WAIT! I got it!&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper .gform_body .gform_fields #field_6_27.gfield input[type=text] {width: 20px}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;THANKS!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Gil Namur on "CSS help - how to change the size of a box"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-help-how-to-change-the-size-of-a-box#post-31929</link>
			<pubDate>Sat, 06 Aug 2011 16:38:33 +0000</pubDate>
			<dc:creator>Gil Namur</dc:creator>
			<guid isPermaLink="false">31929@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Kevin! You ROCK! &#60;/p&#62;
&#60;p&#62;All worked .. just stuck on one. I used this to try and get a single line number field to shorten. &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;body .gform_wrapper input#ginput_input_6_27 {
    width: 20px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It did not shorten .. What did I miss? (its at the hidden site not the link I sent you)&#60;br /&#62;
THANK YOU!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "CSS help - how to change the size of a box"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-help-how-to-change-the-size-of-a-box#post-31926</link>
			<pubDate>Sat, 06 Aug 2011 15:30:53 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">31926@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The class you need to target for the price field is .ginput_product_price&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper span.ginput_product_price {
    color: green;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Gil, You'll need to view the source on your other form, grab the id of the input you want to resize and then replace the ID ( #ginput_quantity_8_6 ) in the example below with the one from your form.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper input#ginput_quantity_8_6 {
    width: 20px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://bit.ly/nyvNxb&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/nyvNxb&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Gil Namur on "CSS help - how to change the size of a box"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-help-how-to-change-the-size-of-a-box#post-31924</link>
			<pubDate>Sat, 06 Aug 2011 15:10:00 +0000</pubDate>
			<dc:creator>Gil Namur</dc:creator>
			<guid isPermaLink="false">31924@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey Chris,&#60;/p&#62;
&#60;p&#62;Thanks! The site in question is in maintenance (pre launch) mode right now but here is another site: &#60;a href=&#34;http://www.mybusinessinfo.info/order-your-web-page/&#34; rel=&#34;nofollow&#34;&#62;http://www.mybusinessinfo.info/order-your-web-page/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;If I wanted the price to be green (rather than red) and the total to be red (rather than green)&#60;/p&#62;
&#60;p&#62;This form does not have a number field like I mentioned above. But what if I wanted to make the quantity field only 2 characters wide? Right now it's 6.&#60;/p&#62;
&#60;p&#62;Thanks!&#60;br /&#62;
Cheers,&#60;br /&#62;
Gil
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "CSS help - how to change the size of a box"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-help-how-to-change-the-size-of-a-box#post-31923</link>
			<pubDate>Sat, 06 Aug 2011 14:51:49 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">31923@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Gil, can you post a link to your form please?  All you want to accomplish should be fairly easy with CSS.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Gil Namur on "CSS help - how to change the size of a box"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-help-how-to-change-the-size-of-a-box#post-31921</link>
			<pubDate>Sat, 06 Aug 2011 14:11:27 +0000</pubDate>
			<dc:creator>Gil Namur</dc:creator>
			<guid isPermaLink="false">31921@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;Being a bit 'green' at css, I wonder if you could just give me an example of how I can change something. &#60;/p&#62;
&#60;p&#62;I'd like to change the color of price from red to green. Can I do this by adding something to my style.css and then use the CSS Class Name option in the form?&#60;/p&#62;
&#60;p&#62;I'd like to make a number field appear as only 2 characters wide. Even set to small, it's still large-ish. Again, can I do this by adding something to my style.css and then use the CSS Class Name option in the form?&#60;/p&#62;
&#60;p&#62;I know about the tutorial link but was hoping for a quick pointer or tip .. please please!&#60;br /&#62;
Thanks and cheers,&#60;br /&#62;
Gil
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
