<?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: Left aligned labels aren&#039;t working</title>
		<link>https://legacy.forums.gravityhelp.com/topic/left-aligned-labels-arent-working</link>
		<description>Gravity Support Forums Topic: Left aligned labels aren&#039;t working</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 17:29:01 +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/left-aligned-labels-arent-working" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Left aligned labels aren&#039;t working"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/left-aligned-labels-arent-working#post-75218</link>
			<pubDate>Thu, 13 Sep 2012 21:36:40 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">75218@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you for the update.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>NSeeger on "Left aligned labels aren&#039;t working"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/left-aligned-labels-arent-working#post-74925</link>
			<pubDate>Wed, 12 Sep 2012 01:50:10 +0000</pubDate>
			<dc:creator>NSeeger</dc:creator>
			<guid isPermaLink="false">74925@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It turned out to be the theme came with form div as clear:both - that was preventing both Gravity Forms CSS output and mine custom settings.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Nancy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Left aligned labels aren&#039;t working"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/left-aligned-labels-arent-working#post-74899</link>
			<pubDate>Tue, 11 Sep 2012 23:16:09 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">74899@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can you make sure you have left labels selected in the admin, turn on the CSS output and remove this custom CSS (for the labels.)  Then we can take a look at it.&#60;/p&#62;
&#60;p&#62;Or, activate the Twenty Ten theme with Gravity Forms CSS output turned on, so we can take a look at it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>NSeeger on "Left aligned labels aren&#039;t working"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/left-aligned-labels-arent-working#post-74898</link>
			<pubDate>Tue, 11 Sep 2012 23:13:25 +0000</pubDate>
			<dc:creator>NSeeger</dc:creator>
			<guid isPermaLink="false">74898@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;HI Chris,&#60;/p&#62;
&#60;p&#62;That is the custom CSS I put in for stylings. Even with that removed and Output turned back on - it still does not bring the input fields up besides the labels. &#60;/p&#62;
&#60;p&#62;I need the stylings regardless. Either the input field or the label field is not allowing the fields in-line. I had noticed this issue with other themes such as Twenty-ten.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Nancy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Left aligned labels aren&#039;t working"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/left-aligned-labels-arent-working#post-74888</link>
			<pubDate>Tue, 11 Sep 2012 22:34:06 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">74888@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Please make sure you have the &#34;Output CSS&#34; checked in the Gravity Forms settings.  I don't see the default Gravity Forms styles being output.  That is one thing.&#60;/p&#62;
&#60;p&#62;Looks like your theme provider has added some Gravity Form specific styles.  See lines 726-763 of style.css:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
#gform_submit_button_1 {
	color:#ffffff !important;
	background:#aaa !important;
	height:auto;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	text-align:center;
	text-decoration;none;
	min-width: 90px;
}
.gform_wrapper .left_label ul.gfield_checkbox, .gform_wrapper .right_label ul.gfield_checkbox, .gform_wrapper .left_label ul.gfield_radio, .gform_wrapper .right_label ul.gfield_radio {
    margin-left: -20px!Important;
    overflow: hidden;
}
.gform_wrapper .left_label .gfield_label
.gform_footer.left_label {
    padding: 16px 0 10px 0!Important;
}
.gfield_label {

}
.right_label {
}
.gform_wrapper ul.gfield_checkbox, .gform_wrapper ul.gfield_radio {
    margin: 6px 0;
    padding: 0.5em;
}
.gform_wrapper .right_label input.medium, .gform_wrapper .right_label select.medium, .gform_wrapper .left_label input.medium, .gform_wrapper .left_label select.medium {
    width: 100%!Important;
}
.gform_body {
	font-family: &#38;quot;pt-sans-narrow&#38;quot;,sans-serif;
	font-style: normal;
	font-weight: 400;
}
#widgets form div {
    margin-bottom: 0!Important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can remove the label-related styles and then the settings from Gravity Forms form builder will be honored.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>NSeeger on "Left aligned labels aren&#039;t working"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/left-aligned-labels-arent-working#post-74839</link>
			<pubDate>Tue, 11 Sep 2012 16:24:36 +0000</pubDate>
			<dc:creator>NSeeger</dc:creator>
			<guid isPermaLink="false">74839@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;HI,&#60;/p&#62;
&#60;p&#62;I must be inheriting something form the theme CSS and after 2 hours I'm stumped. I would prefer left-aligned labels and have it selected in Form settings.&#60;/p&#62;
&#60;p&#62;Example:&#60;br /&#62;
&#60;a href=&#34;http://sheehan.attorneydev.com/contact/&#34; rel=&#34;nofollow&#34;&#62;http://sheehan.attorneydev.com/contact/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Unfortunately the labels are forced to be on separate lines. Any idea why the theme seems to be conflicting and now allowing the left aligned labels?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Nancy
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
