<?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: css for advanced fields not displaying correctly + how to make field title one</title>
		<link>https://legacy.forums.gravityhelp.com/topic/css-for-advanced-fields-not-displaying-correctly-how-to-make-field-title-one</link>
		<description>Gravity Support Forums Topic: css for advanced fields not displaying correctly + how to make field title one</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 13:05:06 +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/css-for-advanced-fields-not-displaying-correctly-how-to-make-field-title-one" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "css for advanced fields not displaying correctly + how to make field title one"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-for-advanced-fields-not-displaying-correctly-how-to-make-field-title-one#post-143380</link>
			<pubDate>Wed, 06 Feb 2013 11:09:20 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">143380@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Let us know if you need more help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rainbowfairy on "css for advanced fields not displaying correctly + how to make field title one"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-for-advanced-fields-not-displaying-correctly-how-to-make-field-title-one#post-142822</link>
			<pubDate>Tue, 05 Feb 2013 20:53:05 +0000</pubDate>
			<dc:creator>rainbowfairy</dc:creator>
			<guid isPermaLink="false">142822@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you!  You are a wizard.  I will try this out.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "css for advanced fields not displaying correctly + how to make field title one"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-for-advanced-fields-not-displaying-correctly-how-to-make-field-title-one#post-142476</link>
			<pubDate>Tue, 05 Feb 2013 09:29:29 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">142476@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You have three distinct issues here.&#60;/p&#62;
&#60;p&#62;For the label wrapping, your theme has set a width of 100px to all labels on line 315 of style.css:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
/* Line 315 */
form label
{
  display: inline-block;
  width: 100px;
  margin-right: 10px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can override that by adding this to your theme's stylesheet:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper .top_label .gfield_label {
    width:100%;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;For the datepicker, you have a couple JavaScript error on the page which is preventing the Gravity Forms jQuery from running properly:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Timestamp: 2/5/2013 7:18:00 AM
Error: TypeError: a is null
Source File: &#60;a href=&#34;http://maps.gstatic.com/intl/en_us/mapfiles/api-3/9/19/main.js&#34; rel=&#34;nofollow&#34;&#62;http://maps.gstatic.com/intl/en_us/mapfiles/api-3/9/19/main.js&#60;/a&#62;
Line: 29

Timestamp: 2/5/2013 7:18:04 AM
Error: TypeError: Yf is null
Source File: &#60;a href=&#34;http://maps.gstatic.com/intl/en_us/mapfiles/api-3/9/19/main.js&#34; rel=&#34;nofollow&#34;&#62;http://maps.gstatic.com/intl/en_us/mapfiles/api-3/9/19/main.js&#60;/a&#62;
Line: 46&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It looks like you're loading a couple versions of the jQuery UI and datepicker on the page.  Please use these troubleshooting steps to see if this is due to a plugin (AJAX Event Calendar?) or theme conflict &#60;a href=&#34;http://rkt.gs/testing&#34; rel=&#34;nofollow&#34;&#62;http://rkt.gs/testing&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;For the advanced fields, your theme is adding padding and margin to all form inputs (see your theme's stylesheet at lines 134 and 316).  You can override this as well, but the fields got really small at that point.  You might have to do more with your original form stylesheet as just overriding the padding might not be what you need.  I added this to your theme's stylesheet and got the result shown here: &#60;a href=&#34;http://minus.com/lpWhi8N1naKaN&#34; rel=&#34;nofollow&#34;&#62;http://minus.com/lpWhi8N1naKaN&#60;/a&#62;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper input[type=&#38;quot;text&#38;quot;], body .gform_wrapper input[type=&#38;quot;url&#38;quot;],
body .gform_wrapper input[type=&#38;quot;email&#38;quot;], body .gform_wrapper input[type=&#38;quot;tel&#38;quot;],
body .gform_wrapper input[type=&#38;quot;number&#38;quot;], body .gform_wrapper input[type=&#38;quot;password&#38;quot;]{
  padding: 0px!important;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>rainbowfairy on "css for advanced fields not displaying correctly + how to make field title one"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-for-advanced-fields-not-displaying-correctly-how-to-make-field-title-one#post-142093</link>
			<pubDate>Tue, 05 Feb 2013 01:17:34 +0000</pubDate>
			<dc:creator>rainbowfairy</dc:creator>
			<guid isPermaLink="false">142093@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I hope you can help me, the advanced fields on this website are displaying incorrectly, the ends are cut off in the address field and the date on the calendar is not displaying, just the dates and these are superimposed.  They are clearly interacting with the css from the theme but I wouldn't know where to start to correct them.  I tied the solution that you offered in code to another user but it didn't fix the problem.&#60;br /&#62;
Also I was wondering how to get it to display the titles for each field in one line, I'm not sure why its separating them into two lines.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://ylv.com.au/enrollment-form-2/&#34; rel=&#34;nofollow&#34;&#62;http://ylv.com.au/enrollment-form-2/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;password is gravityforms&#60;br /&#62;
Thank you&#60;br /&#62;
Sarah
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
