<?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: How to move the form to the left</title>
		<link>https://legacy.forums.gravityhelp.com/topic/how-to-move-the-form-to-the-left</link>
		<description>Gravity Support Forums Topic: How to move the form to the left</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 13:49:00 +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/how-to-move-the-form-to-the-left" rel="self" type="application/rss+xml" />

		<item>
			<title>Rob Harrell on "How to move the form to the left"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-move-the-form-to-the-left#post-47544</link>
			<pubDate>Fri, 27 Jan 2012 14:18:40 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">47544@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Glad to help out Lucas.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "How to move the form to the left"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-move-the-form-to-the-left#post-47542</link>
			<pubDate>Fri, 27 Jan 2012 14:04:24 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">47542@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@Lucas No problem&#60;br /&#62;
@Rob I have to admit I missed that rule when I was scrolling through the html &#38;amp; css in chromes inspector, sometimes you can't see what's right in front of you
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lucasgrav on "How to move the form to the left"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-move-the-form-to-the-left#post-47541</link>
			<pubDate>Fri, 27 Jan 2012 13:57:40 +0000</pubDate>
			<dc:creator>lucasgrav</dc:creator>
			<guid isPermaLink="false">47541@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks guys! Both of your ways worked great! Thanks to your both, and for your time.&#60;/p&#62;
&#60;p&#62;-Lucas
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "How to move the form to the left"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-move-the-form-to-the-left#post-47540</link>
			<pubDate>Fri, 27 Jan 2012 13:51:00 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">47540@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Lucas, this margin is causing your indent:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
#content .post ul li, #content .page ul li, #content .post ol li, #content .page ol li, .catalyst-widget-area ul li, .catalyst-widget-area ol li {
margin: 0 0 0 20px;
padding: 0;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can either axe that, or drop something like this into your theme's stylesheet:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
li.gfield {
margin-left: 0 !important;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "How to move the form to the left"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-move-the-form-to-the-left#post-47539</link>
			<pubDate>Fri, 27 Jan 2012 13:50:43 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">47539@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Lucas,&#60;/p&#62;
&#60;p&#62;If you want to move the entire form closer to the left side of the footer you will need to modify the css rules for the footer, currently it has a width of 960px and the margins are set in such as way that it is centralised. Your current rule is&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#footer {
width: 960px;
height: 100%;
margin: 0 auto;
padding: 5px 0;
clear: both;
float: none;
display: block;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You will have to modify the margin so it reads something like, but this will affect all your other pages&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;margin:0 5px;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>lucasgrav on "How to move the form to the left"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-move-the-form-to-the-left#post-47538</link>
			<pubDate>Fri, 27 Jan 2012 13:47:43 +0000</pubDate>
			<dc:creator>lucasgrav</dc:creator>
			<guid isPermaLink="false">47538@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Thanks for your time. Really appreciate it. I set the label placement to left aligned and it's left aligned but you can't edit it with CSS coding too? Because I need it like 5px away from the left side footer, know what I mean?&#60;/p&#62;
&#60;p&#62;Thanks again.&#60;/p&#62;
&#60;p&#62;-Lucas
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "How to move the form to the left"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-move-the-form-to-the-left#post-47536</link>
			<pubDate>Fri, 27 Jan 2012 13:41:37 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">47536@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;No problem Lucas, your form is currently set to right align the labels if you want them to align left you need to edit the form settings and change the 'label placement' to 'left aligned'.  Doing that should bring your labels inline with the letter b in the 'subscribe to our newsletter' heading.&#60;/p&#62;
&#60;p&#62;Richard
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lucasgrav on "How to move the form to the left"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-move-the-form-to-the-left#post-47530</link>
			<pubDate>Fri, 27 Jan 2012 13:27:40 +0000</pubDate>
			<dc:creator>lucasgrav</dc:creator>
			<guid isPermaLink="false">47530@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm having some trouble with this. On my website, &#60;a href=&#34;http://173.254.15.37/nwtm/&#34; rel=&#34;nofollow&#34;&#62;http://173.254.15.37/nwtm/&#60;/a&#62; The form is at the bottom, the footer. I need everything to the left, for example: \&#60;/p&#62;
&#60;p&#62;The ''Subscribe to our newsletter'' has to be 5 pixels away from the edge of the footer.&#60;br /&#62;
The name, email and categories about 10 pixels away from the edge of the footer.&#60;/p&#62;
&#60;p&#62;I can't seem to figure out the CSS code for it. Any help please?&#60;/p&#62;
&#60;p&#62;Sorry for all the questions.&#60;/p&#62;
&#60;p&#62;Thanks.&#60;/p&#62;
&#60;p&#62;-Lucas
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
