<?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: Custom Styling Question</title>
		<link>https://legacy.forums.gravityhelp.com/topic/custom-styling-question</link>
		<description>Gravity Support Forums Topic: Custom Styling Question</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 02:50:58 +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/custom-styling-question" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Custom Styling Question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-styling-question#post-19229</link>
			<pubDate>Wed, 23 Feb 2011 12:30:24 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">19229@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@gbotica This is a default error message.  We can look at adding it as a form setting in the future, although it was originally designed to be a translatable string so it is part of the localization when the plugin is translated into other languages via PO files.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gbotica on "Custom Styling Question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-styling-question#post-19212</link>
			<pubDate>Wed, 23 Feb 2011 02:57:35 +0000</pubDate>
			<dc:creator>gbotica</dc:creator>
			<guid isPermaLink="false">19212@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for this!&#60;/p&#62;
&#60;p&#62;Shouldn't this text string be able to be set as an option on the form set up?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Custom Styling Question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-styling-question#post-11520</link>
			<pubDate>Fri, 22 Oct 2010 16:03:11 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">11520@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You've constrained the height on your #gform_wrapper_1 to 375px and it already has an &#34;overflow:hidden&#34; applied to the class. That means when the validation error shows, the bottom part of the form is pushed below the visible area. You can try this instead.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#gform_wrapper_1 {
  background-color:#F1EEEE;
  border:3px solid #FFFFFF;
  min-height:375px;
  padding-top:2px;
  overflow:visible
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can change the validation message by adding this filter to your theme's functions.php file.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
// custom validation message for form id 1
add_filter(&#38;quot;gform_validation_message_1&#38;quot;, &#38;quot;change_message_1&#38;quot;, 10, 2);
function change_message_1($message, $form){
  return &#38;quot;&#38;lt;div class=\&#38;quot;validation_error\&#38;quot;&#38;gt;Oops. Something isn&#38;#39;t right. Please make sure the values in the highlighted fields are correct &#38;amp; try submitting again.&#38;lt;/div&#38;gt;&#38;quot;;
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Christinarule on "Custom Styling Question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-styling-question#post-11518</link>
			<pubDate>Fri, 22 Oct 2010 15:34:46 +0000</pubDate>
			<dc:creator>Christinarule</dc:creator>
			<guid isPermaLink="false">11518@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks Carl! &#60;/p&#62;
&#60;p&#62;Is there a way to change the error message? &#34;There was a problem with your submission.&#60;br /&#62;
Errors have been highlighted below &#34;&#60;/p&#62;
&#60;p&#62;Also if you go to my page &#60;a href=&#34;http://christinarule.com/wordpress/&#34; rel=&#34;nofollow&#34;&#62;http://christinarule.com/wordpress/&#60;/a&#62; and hit the submit button when the error pops up it takes away the button??
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Custom Styling Question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-styling-question#post-11516</link>
			<pubDate>Fri, 22 Oct 2010 14:44:21 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">11516@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If you want left aligned labels instead of top aligned labels then you can do this by changing a form setting.  Edit your form to access the form builder, hover over the Form Title area and click the Edit to open up the form settings.  One of the options is label placement.  You can choose top or left aligned labels.&#60;/p&#62;
&#60;p&#62;This should fine for changing the label position.  CSS isn't required for this. &#60;/p&#62;
&#60;p&#62;One thing to note is some WooThemes have hardcoded CSS to force the label position.  So if you are using a WooTheme and the label placement option isn't working, this is why.&#60;/p&#62;
&#60;p&#62;It's hard to tell what CSS is correct without being able to see the form on your site and inspecting the HTML.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Christinarule on "Custom Styling Question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-styling-question#post-11513</link>
			<pubDate>Fri, 22 Oct 2010 14:36:46 +0000</pubDate>
			<dc:creator>Christinarule</dc:creator>
			<guid isPermaLink="false">11513@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;okay stuck again &#60;/p&#62;
&#60;p&#62;#gform_1 .gform_wrapper .gform_footer {&#60;br /&#62;
margin-bottom:0;&#60;br /&#62;
margin-left:0;&#60;br /&#62;
margin-right:0;&#60;br /&#62;
margin-top:1px;&#60;br /&#62;
padding-bottom:10px;&#60;br /&#62;
padding-left:0;&#60;br /&#62;
padding-right:0;&#60;br /&#62;
padding-top:6px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;shouldnt that call out the footer??
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Christinarule on "Custom Styling Question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-styling-question#post-11509</link>
			<pubDate>Fri, 22 Oct 2010 13:53:15 +0000</pubDate>
			<dc:creator>Christinarule</dc:creator>
			<guid isPermaLink="false">11509@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;AH never mind just realized I didnt include #gform_1  SORRy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Christinarule on "Custom Styling Question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-styling-question#post-11508</link>
			<pubDate>Fri, 22 Oct 2010 13:48:41 +0000</pubDate>
			<dc:creator>Christinarule</dc:creator>
			<guid isPermaLink="false">11508@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;okay so im getting stuck... instead of the text being above the field I want it to be on the side, so in front of the field.  I'm trying to call out the label but nothing is happening. My form ID is 1 so wouldn't this be what I'd call out .gfield_label_1
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Custom Styling Question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-styling-question#post-11494</link>
			<pubDate>Fri, 22 Oct 2010 11:07:17 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">11494@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Sure. Just let us know if you need anything else.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Christinarule on "Custom Styling Question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-styling-question#post-11493</link>
			<pubDate>Fri, 22 Oct 2010 11:04:55 +0000</pubDate>
			<dc:creator>Christinarule</dc:creator>
			<guid isPermaLink="false">11493@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Kevin!!!! Thank you! Amazing support!!! Thanks!!! I'll try it out!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
