<?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: Making fields taller without misaligning multiple choice radio buttons?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/making-fields-taller-without-misaligning-multiple-choice-radio-buttons</link>
		<description>Gravity Support Forums Topic: Making fields taller without misaligning multiple choice radio buttons?</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 23:08:40 +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/making-fields-taller-without-misaligning-multiple-choice-radio-buttons" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "Making fields taller without misaligning multiple choice radio buttons?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-fields-taller-without-misaligning-multiple-choice-radio-buttons#post-23143</link>
			<pubDate>Wed, 13 Apr 2011 10:44:03 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">23143@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You're setting the field size relative to the font size so if you up the font size, the field size should get larger along with it. You can use a pixel value for the height rather than the em value if you want the height to be independent of the font size. Something like this instead..&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper input[type=text],
body .gform_wrapper input[type=tel],
body .gform_wrapper input[type=url],
body .gform_wrapper input[type=password],
body .gform_wrapper input[type=number],
body .gform_wrapper input[type=file],
body .gform_wrapper select {
	height:30px;
        font-size:14px;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>scott74 on "Making fields taller without misaligning multiple choice radio buttons?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-fields-taller-without-misaligning-multiple-choice-radio-buttons#post-23140</link>
			<pubDate>Wed, 13 Apr 2011 09:19:54 +0000</pubDate>
			<dc:creator>scott74</dc:creator>
			<guid isPermaLink="false">23140@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;ps.. i tried this but it expands the boxes way up&#60;br /&#62;
body .gform_wrapper .gform_body .gform_fields .gfield input[type=text] {font-size:14px}
&#60;/p&#62;</description>
		</item>
		<item>
			<title>scott74 on "Making fields taller without misaligning multiple choice radio buttons?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-fields-taller-without-misaligning-multiple-choice-radio-buttons#post-23138</link>
			<pubDate>Wed, 13 Apr 2011 09:09:28 +0000</pubDate>
			<dc:creator>scott74</dc:creator>
			<guid isPermaLink="false">23138@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey Kevin thank you.. i found this page to read through&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I am trying to make the text that get put in the 3em fields appear bigger also not.. as its pretty small since i increased the fields&#60;/p&#62;
&#60;p&#62;Would that be the input field text or something... i tried this code  of course it targeted the outer field with a red border but just trying to make the text that gets inputed bigger now.&#60;/p&#62;
&#60;p&#62;body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container {border:1px solid red}
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Making fields taller without misaligning multiple choice radio buttons?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-fields-taller-without-misaligning-multiple-choice-radio-buttons#post-23121</link>
			<pubDate>Tue, 12 Apr 2011 23:38:58 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">23121@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Sure. Drop down fields are &#34;selects&#34; in CSS. You would add that to the list of elements that get the 3em height rule. Revised CSS is below.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
/* target specific input types for the new height property */

body .gform_wrapper input[type=text],
body .gform_wrapper input[type=tel],
body .gform_wrapper input[type=url],
body .gform_wrapper input[type=password],
body .gform_wrapper input[type=number],
body .gform_wrapper input[type=file],
body .gform_wrapper select {
	height:3em
}

/* add spacing between lists by padding the containing list item */

body .gform_wrapper ul.gfield_radio li {
    padding-bottom: 10px!important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Here's a good reference page:&#60;br /&#62;
&#60;a href=&#34;http://www.w3schools.com/html/html_forms.asp&#34; rel=&#34;nofollow&#34;&#62;http://www.w3schools.com/html/html_forms.asp&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>scott74 on "Making fields taller without misaligning multiple choice radio buttons?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-fields-taller-without-misaligning-multiple-choice-radio-buttons#post-23112</link>
			<pubDate>Tue, 12 Apr 2011 20:40:43 +0000</pubDate>
			<dc:creator>scott74</dc:creator>
			<guid isPermaLink="false">23112@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey Great , thanks kevin... is there a way to increase the drop down menu fields also to match the 3em of the email, name ect.. fields...&#60;/p&#62;
&#60;p&#62;I guess it would be another type equals... but what are they called  or is there a list somewhere.. thanks..
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Making fields taller without misaligning multiple choice radio buttons?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-fields-taller-without-misaligning-multiple-choice-radio-buttons#post-23015</link>
			<pubDate>Mon, 11 Apr 2011 17:10:39 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">23015@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You're going about this the wrong way. You're applying blanket rules to the input tag and there are different types of inputs such as radio/checkbox inputs that will inherit the same properties.&#60;/p&#62;
&#60;p&#62;It's better to target the inputs specifically by their types to do what you want. Replace your input rule with this.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
/* target specific input types for the new height property */

body .gform_wrapper input[type=text],
body .gform_wrapper input[type=tel],
body .gform_wrapper input[type=url],
body .gform_wrapper input[type=password],
body .gform_wrapper input[type=number],
body .gform_wrapper input[type=file] {
	height:3em
}

/* add spacing between lists by padding the containing list item */

body .gform_wrapper ul.gfield_radio li {
    padding-bottom: 10px!important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://d.pr/EeWV&#34; rel=&#34;nofollow&#34;&#62;http://d.pr/EeWV&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Making fields taller without misaligning multiple choice radio buttons?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-fields-taller-without-misaligning-multiple-choice-radio-buttons#post-22974</link>
			<pubDate>Mon, 11 Apr 2011 12:53:34 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">22974@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I see the margin being applied, the problem is you have to remove the 3em you are also setting. That is what is causing the display issue with the checkbox.  The 3em is being applied to the checkbox input but not the label.  Your CSS has to be written so it applies to all the elements, checkboxes consist of an LI a CHECKBOX INPUT and a LABEL so you have to apply your CSS accordingly.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>scott74 on "Making fields taller without misaligning multiple choice radio buttons?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-fields-taller-without-misaligning-multiple-choice-radio-buttons#post-22967</link>
			<pubDate>Mon, 11 Apr 2011 12:02:48 +0000</pubDate>
			<dc:creator>scott74</dc:creator>
			<guid isPermaLink="false">22967@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I tried that code but does not seem to affect anything..&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://logoicons.s3.amazonaws.com/customcss.jpg&#34; rel=&#34;nofollow&#34;&#62;http://logoicons.s3.amazonaws.com/customcss.jpg&#60;/a&#62;   Screen of code &#60;/p&#62;
&#60;p&#62;form  &#60;a href=&#34;http://greenprintlawns.com/10point/&#34; rel=&#34;nofollow&#34;&#62;http://greenprintlawns.com/10point/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Making fields taller without misaligning multiple choice radio buttons?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-fields-taller-without-misaligning-multiple-choice-radio-buttons#post-22960</link>
			<pubDate>Mon, 11 Apr 2011 11:31:31 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">22960@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This is because your change is only being applied to the radio button itself, and not the text next to it.  &#60;/p&#62;
&#60;p&#62;If you want more space in between radio button items then add this CSS to your themes stylesheet:&#60;/p&#62;
&#60;p&#62;.gform_wrapper .gfield_radio li {margin-top: 10px; margin-botto: 10px;}&#60;/p&#62;
&#60;p&#62;You may need to adjust your existing CSS so it doesn't add that EM to the input element globally.  It's never recommended to add CSS to inputs globally like that as there are a lot of fields that are actually INPUT fields you may not want to style that way (submit buttons are inputs too).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>scott74 on "Making fields taller without misaligning multiple choice radio buttons?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-fields-taller-without-misaligning-multiple-choice-radio-buttons#post-22940</link>
			<pubDate>Mon, 11 Apr 2011 10:51:09 +0000</pubDate>
			<dc:creator>scott74</dc:creator>
			<guid isPermaLink="false">22940@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It is available now&#60;br /&#62;
&#60;a href=&#34;http://greenprintlawns.com/new-customer/&#34; rel=&#34;nofollow&#34;&#62;http://greenprintlawns.com/new-customer/&#60;/a&#62;   radio buttons being pushed down here&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://greenprintlawns.com/10point/&#34; rel=&#34;nofollow&#34;&#62;http://greenprintlawns.com/10point/&#60;/a&#62;    check boxes being pushed here&#60;/p&#62;
&#60;p&#62;using this in the css&#60;/p&#62;
&#60;p&#62;.gform_wrapper input, .gform_wrapper option {&#60;br /&#62;
                height: 3em;&#60;br /&#62;
                }&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
