<?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: Forms running OVER my footer section, conflicting with information</title>
		<link>https://legacy.forums.gravityhelp.com/topic/forms-running-over-my-footer-section-conflicting-with-information</link>
		<description>Gravity Support Forums Topic: Forms running OVER my footer section, conflicting with information</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 05:21:17 +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/forms-running-over-my-footer-section-conflicting-with-information" rel="self" type="application/rss+xml" />

		<item>
			<title>jessalouisa on "Forms running OVER my footer section, conflicting with information"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forms-running-over-my-footer-section-conflicting-with-information#post-27977</link>
			<pubDate>Thu, 16 Jun 2011 17:07:38 +0000</pubDate>
			<dc:creator>jessalouisa</dc:creator>
			<guid isPermaLink="false">27977@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;OK thanks again, much appreciated.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Forms running OVER my footer section, conflicting with information"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forms-running-over-my-footer-section-conflicting-with-information#post-27968</link>
			<pubDate>Thu, 16 Jun 2011 15:20:50 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">27968@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yep, usually the first thing the theme providers say is that it's a plugin issue. We're used to that. The problem is that the script is setting a fixed height on the page and thus the theme is not flexible enough to handle dynamic content like your form.&#60;/p&#62;
&#60;p&#62;You can share the information I provided and they should understand it fine. It's not overly technical, but still a bit to get for somebody who's not a full time developer.&#60;/p&#62;
&#60;p&#62;I would ask about disabling that portion of the script and what effect that might have on the rest of your form layout. You may be able to create a new page template just for your forms that doesn't use the height script. Again, it's probably best to consult the theme provider on that since they're going to be intimately familiar with the theme and can offer the best solution.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jessalouisa on "Forms running OVER my footer section, conflicting with information"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forms-running-over-my-footer-section-conflicting-with-information#post-27967</link>
			<pubDate>Thu, 16 Jun 2011 15:14:06 +0000</pubDate>
			<dc:creator>jessalouisa</dc:creator>
			<guid isPermaLink="false">27967@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi, thank you. I contacted theme first, who said it was a plugin/form issue ... Much of what you described is well over my head, but are you suggesting that I ask the theme if I can modify the custom.js file somehow ... some setting in there might help this to render properly? Thank you again. jessa
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Forms running OVER my footer section, conflicting with information"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forms-running-over-my-footer-section-conflicting-with-information#post-27966</link>
			<pubDate>Thu, 16 Jun 2011 15:08:56 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">27966@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Your &#34;left-area&#34; div has an inline height being defined when the page is rendered. This is usually because there is an &#34;equal height column&#34; jQuery script that dynamically adjusts the heights of 2 or more columns on the page. This script is not adjusting the column height to accomodate your form properly. This often happens when you use this kind of script with conditional logic. The height script runs when the page loads, but the form height changes when certain fields change. The page doesn't reload so the height script can't recalculate and since the form is now taller than the specified height, the form overflows the vertical boundary and the footer.&#60;/p&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://grab.by/an1M&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/an1M&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;If you disable the inline height property, the formatting fits in the content area properly without overflowing the footer.&#60;/p&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://grab.by/an2c&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/an2c&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;In just a quick look, it appears that the script is located at the end of your theme's custom.js file&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;var $et_left_area = jQuery(&#38;#39;#left-area&#38;#39;),
	$et_sidebar = jQuery(&#38;#39;#sidebar&#38;#39;);

if ( $et_left_area.innerHeight() &#38;lt; $et_sidebar.innerHeight() ) $et_left_area.css( &#38;#39;height&#38;#39;, ( $et_sidebar.innerHeight()+15 ) );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;a href=&#34;http://exhaleinspirenow.com/wp-content/themes/Modest/js/custom.js&#34; rel=&#34;nofollow&#34;&#62;http://exhaleinspirenow.com/wp-content/themes/Modest/js/custom.js&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Since this is a theme issue, my suggestion is to discuss this with your theme provider and see what solution they suggest to solve the overflow issue.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jessalouisa on "Forms running OVER my footer section, conflicting with information"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forms-running-over-my-footer-section-conflicting-with-information#post-27954</link>
			<pubDate>Thu, 16 Jun 2011 14:36:38 +0000</pubDate>
			<dc:creator>jessalouisa</dc:creator>
			<guid isPermaLink="false">27954@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can somebody help me to correct these problems ...&#60;/p&#62;
&#60;p&#62;On both pages of my forms (long forms) the form runs over the footer portion of the page and conflicts with the information there ... Will be difficult for the person filling out ... How can I fix/avoid this?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://exhaleinspirenow.com/reserve-your-appt/&#34; rel=&#34;nofollow&#34;&#62;http://exhaleinspirenow.com/reserve-your-appt/&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://exhaleinspirenow.com/simple-online-intake-form/&#34; rel=&#34;nofollow&#34;&#62;http://exhaleinspirenow.com/simple-online-intake-form/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;user: guest&#60;br /&#62;
pwd: guest8448&#60;br /&#62;
thank you
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
