<?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: Pricing Field Setup and CSS</title>
		<link>https://legacy.forums.gravityhelp.com/topic/pricing-field-setup-and-css</link>
		<description>Gravity Support Forums Topic: Pricing Field Setup and CSS</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 23:29: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/pricing-field-setup-and-css" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "Pricing Field Setup and CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pricing-field-setup-and-css#post-37577</link>
			<pubDate>Tue, 11 Oct 2011 14:14:34 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">37577@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;There aren't any reusable class names in my example.  You would target each element by it's unique ID ( # ) and define a new rule for it.&#60;/p&#62;
&#60;p&#62;Now, if you have a ton of these, it's going to take a while to customize everything that way. You can tinker around with creating a re-usable class name and then applying it via the form editor, but you might have to take a different approach somewhat. That's probably not going to work so well using the method I outlined.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Shonari on "Pricing Field Setup and CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pricing-field-setup-and-css#post-37574</link>
			<pubDate>Tue, 11 Oct 2011 13:59:19 +0000</pubDate>
			<dc:creator>Shonari</dc:creator>
			<guid isPermaLink="false">37574@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you so much!&#60;/p&#62;
&#60;p&#62;So for each item I will have to either:&#60;/p&#62;
&#60;p&#62;Duplicate the css and change the css class name in both the css and advanced field options &#60;/p&#62;
&#60;p&#62;OR&#60;/p&#62;
&#60;p&#62;Keep the same css class name and just add it across all the fields.&#60;/p&#62;
&#60;p&#62;PS Based on your examples, what would be the name of the 'css class name'? field_106_3.gfield or just 106_3
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Pricing Field Setup and CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pricing-field-setup-and-css#post-37571</link>
			<pubDate>Tue, 11 Oct 2011 13:33:33 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">37571@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can do something similar, but it's going to require some CSS customization. I'm not sure how comfortable you are with that or not, but here's a gist of it.&#60;/p&#62;
&#60;p&#62;I created a test form with a few fields.. using a section header field to create the &#34;box&#34; and then absolutely positioning the product/quantity fields and product image ( added via a HTML block ) to create the overall look you referenced.&#60;/p&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://bit.ly/pyxKhm&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/pyxKhm&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;For my sample form ( form ID #106 ) here's the CSS I used to make it happen. You would of course update this to the correct form and field ID's in your form.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
/* example assumes this is form ID #106 - update your form ID and
field ID&#38;#39;s in the rules below and tweak as needed to suit your preference */

body #gform_wrapper_106.gform_wrapper {
	position: relative
}

/* size the section header and apply a border to it for a box or container effect */

body #gform_wrapper_106.gform_wrapper .gform_body ul.gform_fields li#field_106_1.gfield.gsection {
	height: 240px;
	border: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding:20px 20px 20px 180px
}

/* absolutely position the product and quantity fields in the &#38;#39;box&#38;#39; above */

body #gform_wrapper_106.gform_wrapper .gform_body ul.gform_fields li#field_106_2.gfield {
	position: absolute;
	top: 165px;
	left:180px
}
body #gform_wrapper_106.gform_wrapper .gform_body ul.gform_fields li#field_106_4.gfield {
	position: absolute;
	top: 215px;
	left:180px
}
body #gform_wrapper_106.gform_wrapper .gform_body ul.gform_fields li#field_106_3.gfield {
	position: absolute;
	top: 265px;
	left:180px
}

/* absolutely position the product image added in the HTML field */

body #gform_wrapper_106.gform_wrapper .gform_body ul.gform_fields li#field_106_8.gfield {
	position: absolute;
	top: 60px;
	left:6px
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and just to make it easier to see how it went together, you can &#60;a href=&#34;http://dl.dropbox.com/u/688846/gravityhelp/order_baskets/gravityforms-export-2011-10-11.xml&#34; rel=&#34;nofollow&#34;&#62;download my sample form ( XML ) here&#60;/a&#62; and import it into your Gravity Forms admin via the import tool to deconstruct.&#60;/p&#62;
&#60;p&#62;I hope that helps point you in the right direction.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Shonari on "Pricing Field Setup and CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pricing-field-setup-and-css#post-37551</link>
			<pubDate>Tue, 11 Oct 2011 11:47:50 +0000</pubDate>
			<dc:creator>Shonari</dc:creator>
			<guid isPermaLink="false">37551@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have been using Contact Form 7 to create my order forms but the problem I found was that it doesn't handle blank fields very well. Here is where Gravity Forms come in.&#60;/p&#62;
&#60;p&#62;The problem is I dont quite understand how to set up the fields as i did with contact form 7, add images to each section and assign prices and quanity to each size. I have read up on it and got some of it working but its a bit confusing.&#60;/p&#62;
&#60;p&#62;Here is what I would like to achieve.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://img687.imageshack.us/img687/5754/platter.jpg&#34; rel=&#34;nofollow&#34;&#62;http://img687.imageshack.us/img687/5754/platter.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Where the blank fields are the quantity.&#60;/p&#62;
&#60;p&#62;Which form field achieves this and where do i add the relevant css to make it all come together?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
