<?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: Form not Aligning Properly</title>
		<link>https://legacy.forums.gravityhelp.com/topic/form-not-aligning-properly</link>
		<description>Gravity Support Forums Topic: Form not Aligning Properly</description>
		<language>en-US</language>
		<pubDate>Sat, 25 Apr 2026 05:07:03 +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/form-not-aligning-properly" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Form not Aligning Properly"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-aligning-properly#post-22566</link>
			<pubDate>Tue, 05 Apr 2011 15:11:15 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">22566@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It's getting the submit style buttons from your theme.  If you want to change the button style you can add some custom CSS to your themes CSS to style that element.&#60;/p&#62;
&#60;p&#62;You would target it by adding this CSS to your themes stylesheet:&#60;/p&#62;
&#60;p&#62;body .gform_wrapper .gform_footer input[type=submit] {YOUR CSS GOES HERE}&#60;/p&#62;
&#60;p&#62;You would add whatever CSS you want to style the button to your liking.&#60;/p&#62;
&#60;p&#62;It looks the way it does right now because of styles being applied by your theme due to CSS inheritance.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ManAbout on "Form not Aligning Properly"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-aligning-properly#post-22561</link>
			<pubDate>Tue, 05 Apr 2011 14:54:19 +0000</pubDate>
			<dc:creator>ManAbout</dc:creator>
			<guid isPermaLink="false">22561@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;OK, I appear to have resolved some of it. I have recreated the Wordpress page, entering the shortcode on the page exactly as follows:&#60;/p&#62;
&#60;p&#62;[gravityform id=2  name=Lace Wig - 20 Inch Indian Remy]&#60;/p&#62;
&#60;p&#62;It seems to have made some difference, with the form left aligning now. Where is it getting that submit button from? And how do I change it?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Form not Aligning Properly"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-aligning-properly#post-22556</link>
			<pubDate>Tue, 05 Apr 2011 14:32:15 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">22556@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;How are you displaying the form on that page?&#60;/p&#62;
&#60;p&#62;Are you using the function call or the shortcode?&#60;/p&#62;
&#60;p&#62;If you are using the shortcode is that page content being called directly or does it contain a WordPress loop?&#60;/p&#62;
&#60;p&#62;Let me know, this determines the next step because in certain cases the scripts need to manually be enqueued if used outside the standard shortcode in a loop display method.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ManAbout on "Form not Aligning Properly"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-aligning-properly#post-22553</link>
			<pubDate>Tue, 05 Apr 2011 13:25:16 +0000</pubDate>
			<dc:creator>ManAbout</dc:creator>
			<guid isPermaLink="false">22553@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;OK, I have looked at the Gravity Forms setting and it does have Output CSS set to Yes. &#60;/p&#62;
&#60;p&#62;Also, I see the following in Header.php and Footer.php respectively. &#60;/p&#62;
&#60;p&#62;&#38;lt;?php wp_head(); //leave for plugins ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php wp_footer();
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Form not Aligning Properly"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-aligning-properly#post-22551</link>
			<pubDate>Tue, 05 Apr 2011 13:16:26 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">22551@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The Gravity Forms CSS isn't being output on the page so the form isn't being styled at all.&#60;/p&#62;
&#60;p&#62;This is either because CSS output is turned off on the Gravity Forms page Settings or more likely your theme lacks the necessary wp_head() function call in your header.php file and the wp_footer() function call in your footer.php file.&#60;/p&#62;
&#60;p&#62;Make sure your header.php and footer.php file have these function calls in place.&#60;/p&#62;
&#60;p&#62;wp_head() documentation can be found here:&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Function_Reference/wp_head&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/wp_head&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;wp_footer() documentation can be found here:&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Function_Reference/wp_footer&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/wp_footer&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ManAbout on "Form not Aligning Properly"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-aligning-properly#post-22544</link>
			<pubDate>Tue, 05 Apr 2011 13:03:43 +0000</pubDate>
			<dc:creator>ManAbout</dc:creator>
			<guid isPermaLink="false">22544@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am trying to create a fairly complex order form that integrates with Cart66. &#60;/p&#62;
&#60;p&#62;The form is left aligned when I look at the form preview. &#60;/p&#62;
&#60;p&#62;But, this is how it looks in the theme:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://monroseplace.street2web.com/product-test/&#34; rel=&#34;nofollow&#34;&#62;http://monroseplace.street2web.com/product-test/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;It's adding extra bullet points next to each option and the main question. The main question is also not bold like in the preview. It's center aligning the form and the submit button doesn't look very nice either. &#60;/p&#62;
&#60;p&#62;Where do I need to go to make the changes to have theme for it to be properly aligned?&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
