<?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 Tag: label - Recent Topics</title>
		<link>https://legacy.forums.gravityhelp.com/tags/label</link>
		<description>Gravity Support Forums Tag: label - Recent Topics</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 19:57:05 +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/tags/label/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>QandnotU on "Active and Validation Highlighting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/hover-and-validation-hightlights#post-330620</link>
			<pubDate>Tue, 18 Jun 2013 17:30:28 +0000</pubDate>
			<dc:creator>QandnotU</dc:creator>
			<guid isPermaLink="false">330620@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm looking to highlight the Sub-Label color when someone is focused on a field.&#60;/p&#62;
&#60;p&#62;Also, when validation errors occur, I'm looking to change the font color for both the Label and Sub-Label as well as the class for the input field. Basically want to make these elements red.&#60;/p&#62;
&#60;p&#62;Can anyone help me with the CSS strings or php to accomplish this. Any help would be greatly appreciated.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>conseo on "Merge tags from dropdown"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/merge-tags-from-dropdown#post-167653</link>
			<pubDate>Mon, 11 Mar 2013 09:17:32 +0000</pubDate>
			<dc:creator>conseo</dc:creator>
			<guid isPermaLink="false">167653@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi&#60;br /&#62;
I have a dropdown box with some values:&#60;/p&#62;
&#60;p&#62;1 week&#124;37&#60;br /&#62;
2 weeks&#124;74&#60;br /&#62;
3 weeks&#124;111&#60;/p&#62;
&#60;p&#62;The user choose 1 week, 2 weeks etc, and the value is 37, 74 etc.&#60;br /&#62;
Now i would like to make a link with the values that can be populated dynamically.&#60;/p&#62;
&#60;p&#62;mydomain.dk/&#38;amp;week=37&#60;br /&#62;
But instead of 37 its mydomain.dk/&#38;amp;week=1 week&#60;/p&#62;
&#60;p&#62;how do i get the value instead?&#60;br /&#62;
thanks&#60;/p&#62;
&#60;p&#62;Lars
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lowercase on "Change City label to Suburb"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-city-label-to-suburb#post-303864</link>
			<pubDate>Wed, 05 Jun 2013 11:14:53 +0000</pubDate>
			<dc:creator>lowercase</dc:creator>
			<guid isPermaLink="false">303864@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am trying to change the 'city' label in the address filed to 'Suburb'.&#60;br /&#62;
I am using filters within functions.php but it keeps breaking when i add this filter.&#60;/p&#62;
&#60;p&#62;My funcitons code is here...&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;br /&#62;
/**&#60;br /&#62;
 * @package WordPress&#60;br /&#62;
 * @subpackage Default_Theme&#60;br /&#62;
 */&#60;/p&#62;
&#60;p&#62;if ( function_exists('register_sidebar') ) {&#60;br /&#62;
	register_sidebar(array(&#60;br /&#62;
		'before_widget' =&#38;gt; '&#38;lt;li id=&#34;%1$s&#34; class=&#34;widget %2$s&#34;&#38;gt;',&#60;br /&#62;
		'after_widget' =&#38;gt; '',&#60;br /&#62;
		'before_title' =&#38;gt; '&#38;lt;h2 class=&#34;widgettitle&#34;&#38;gt;',&#60;br /&#62;
		'after_title' =&#38;gt; '&#38;lt;/h2&#38;gt;',&#60;br /&#62;
	));&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62; ?&#38;gt;&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
add_filter(&#34;gform_address_types&#34;, &#34;aus_address&#34;, 10, 2);&#60;br /&#62;
function aus_address($address_types, $form_id){&#60;br /&#62;
$address_types[&#34;australia&#34;] = array(&#60;br /&#62;
&#34;label&#34; =&#38;gt; &#34;Australia&#34;,&#60;br /&#62;
&#34;country&#34; =&#38;gt; &#34;Australia&#34;,&#60;br /&#62;
&#34;zip_label&#34; =&#38;gt; &#34;Postcode&#34;,&#60;br /&#62;
&#34;state_label&#34; =&#38;gt; &#34;State&#34;,&#60;br /&#62;
&#34;states&#34; =&#38;gt; array(&#34;NT&#34;=&#38;gt;&#34;NT&#34;, &#34;ACT&#34;=&#38;gt;&#34;ACT&#34;,&#34;NSW&#34;=&#38;gt;&#34;NSW&#34;, &#34;QLD&#34;=&#38;gt;&#34;QLD&#34;, &#34;VIC&#34;=&#38;gt;&#34;VIC&#34;, &#34;WA&#34;=&#38;gt;&#34;WA&#34;,&#34;SA&#34;=&#38;gt;&#34;SA&#34;, &#34;TAS&#34; =&#38;gt; &#34;TAS&#34;)&#60;br /&#62;
);&#60;br /&#62;
return $address_types;&#60;br /&#62;
}&#60;br /&#62;
?&#38;gt;&#60;/p&#62;
&#60;p&#62;?&#38;gt;&#60;br /&#62;
How do i now add the label change to above code without it breaking the site?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Contexture on "Merge tag for Dropdown Option Text?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/merge-tag-for-dropdown-option-text#post-197693</link>
			<pubDate>Fri, 05 Apr 2013 11:22:13 +0000</pubDate>
			<dc:creator>Contexture</dc:creator>
			<guid isPermaLink="false">197693@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I need a merge tag that allows me to pass along the TEXT for the selected option in a dropdown, but can't find anything in the documentation.&#60;/p&#62;
&#60;p&#62;:value returns the selected options value attribute, :label returns the &#38;lt;label&#38;gt;, but there doesn't seem to be a :text or :content merge tag option.&#60;/p&#62;
&#60;p&#62;In my case, the option's value attribute is a WordPress post slug that would be meaningless to the person receiving the email, but necessary to have the field auto-populate via querystring. The selected &#38;lt;option&#38;gt;'s text, however, is relevant... and I need to ensure that it is included in the email.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pandemicsoul on "Increase the label width"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/increase-the-label-width#post-295583</link>
			<pubDate>Sat, 01 Jun 2013 15:47:39 +0000</pubDate>
			<dc:creator>pandemicsoul</dc:creator>
			<guid isPermaLink="false">295583@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Not sure what I'm doing wrong here. I want to increase the size of the label width and then add some top-margin to the fields. &#60;/p&#62;
&#60;p&#62;I added the following to my custom.css file, but I don't seem to be getting any changes: &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.gfield_label {
width: 255px;
margin: 10px 0px 4px !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Page: &#60;a href=&#34;http://www.starbase118.net/members/personnel/forms/request-to-return/&#34; rel=&#34;nofollow&#34;&#62;http://www.starbase118.net/members/personnel/forms/request-to-return/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dutch7773 on "Different field layout"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/different-field-layout#post-268371</link>
			<pubDate>Wed, 22 May 2013 13:06:38 +0000</pubDate>
			<dc:creator>dutch7773</dc:creator>
			<guid isPermaLink="false">268371@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am looking for a way to free format fields, for instance inline fields within text in an HTML box. I need to have some text with a field for price and name that people need to fill out.&#60;/p&#62;
&#60;p&#62;Also would like to have more control over layout, like fields from left to right instead of all on a different line. Maybe it is possible with a simple command but having the labels on the same line as the field is something I need too.&#60;/p&#62;
&#60;p&#62;Hopefully there are any bright minds out there coming to the rescue. Have been using gravity forms to great satisfaction, but now I am getting in more complicated layouts for forms and hitting a wall. Thanks!&#60;/p&#62;
&#60;p&#62;Dutch
&#60;/p&#62;</description>
		</item>
		<item>
			<title>carstensch on "How to change the color of the names of the &#34;required fields&#34; ONLY?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-change-the-color-of-the-names-of-the-required-fields-only#post-252400</link>
			<pubDate>Tue, 14 May 2013 06:17:45 +0000</pubDate>
			<dc:creator>carstensch</dc:creator>
			<guid isPermaLink="false">252400@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello Guys,&#60;/p&#62;
&#60;p&#62;i have the following issue:&#60;/p&#62;
&#60;p&#62;I just want to change the color of the required field names only!&#60;/p&#62;
&#60;p&#62;My link is: &#60;a href=&#34;http://autoankaufhansa.de/autoankaufformular/&#34; rel=&#34;nofollow&#34;&#62;http://autoankaufhansa.de/autoankaufformular/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Basically i just want to change the color of the names of the required fields.&#60;/p&#62;
&#60;p&#62;Kfz Kategorie* / Modell* / Getriebeart* ...&#60;/p&#62;
&#60;p&#62;I couldnt find any specific topic about how to do this and to be honest, im not that good in CSS ;-).&#60;/p&#62;
&#60;p&#62;Thanks in advance.&#60;/p&#62;
&#60;p&#62;Carsten
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick5a1 on "Target label by input type to vertically align label"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/target-label-by-input-type-to-vertically-align-label#post-235832</link>
			<pubDate>Fri, 03 May 2013 20:05:50 +0000</pubDate>
			<dc:creator>Nick5a1</dc:creator>
			<guid isPermaLink="false">235832@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I've increased the font size of all of the text, email, url, tel, number etc inputs across all forms. Now that these text inputs are higher, when labels are left aligned, they are not vertically aligned. I can correct this by increasing the line height of the labels by targeting &#60;code&#62;.gform_wrapper .gfield_label&#60;/code&#62;. But this increases the line-height of all labels, including radio buttons and select inputs, which then makes them misaligned.&#60;/p&#62;
&#60;p&#62;How can I increase the line-height of the labels for &#60;u&#62;just&#60;/u&#62; the text type inputs?&#60;/p&#62;
&#60;p&#62;EDIT: Here's my &#60;a href=&#34;http://trialfacts.com/wp/new-trials-mailing-list/&#34; rel=&#34;nofollow&#34;&#62;form&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;Or could there be another way to achieve the vertical label alignment?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hacitezgel on "Field Label doesn&#039;t appear"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/field-label-doesnt-appear#post-233145</link>
			<pubDate>Thu, 02 May 2013 04:00:38 +0000</pubDate>
			<dc:creator>hacitezgel</dc:creator>
			<guid isPermaLink="false">233145@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have a problem with my theme and graivty forms, for some reason the field labels do not appear regardless of where i set them be it ontop of the fields or on the left. I have tried switching to another theme and it all works fine so there must be something wrong with my theme im using now. can anyone please advise me on what to do?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.computechworld.co.uk/bookings/&#34; rel=&#34;nofollow&#34;&#62;http://www.computechworld.co.uk/bookings/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dashaluna on "Form Entry - display label, not value for checkboxes, selects"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-entry-display-label-not-value-for-checkboxes-selects#post-205805</link>
			<pubDate>Thu, 11 Apr 2013 13:57:13 +0000</pubDate>
			<dc:creator>dashaluna</dc:creator>
			<guid isPermaLink="false">205805@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I've got checkboxes and selects where label is different to its value.&#60;br /&#62;
In the DB the value is saved ok, however, when viewing Form Entries (and pre-submit form data) for all the checkboxes and selects the values are displayed not labels. So I end up with not so informative IDs rather than names.&#60;/p&#62;
&#60;p&#62;I'm using {all_fields} merge tag without any filter modifications.&#60;/p&#62;
&#60;p&#62;Is there a way to display labels instead of values in the Form Entries screen?&#60;/p&#62;
&#60;p&#62;Many thanks, Dasha
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
