<?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: Phone number field - 2 error boxes on submission</title>
		<link>https://legacy.forums.gravityhelp.com/topic/phone-number-field-2-error-boxes-on-submission</link>
		<description>Gravity Support Forums Topic: Phone number field - 2 error boxes on submission</description>
		<language>en-US</language>
		<pubDate>Sun, 05 Apr 2026 01:59:00 +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/phone-number-field-2-error-boxes-on-submission" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Phone number field - 2 error boxes on submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/phone-number-field-2-error-boxes-on-submission#post-30571</link>
			<pubDate>Wed, 20 Jul 2011 17:46:15 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">30571@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;1) Currently the Phone Number doesn't have the Field Size selector.  We will be adding that in the 1.6 release.  Until then you would have to use CSS to resize the field.  You can create a custom class in your themes stylesheet that sets the width and then apply that class in the Advanced settings for your Phone Number field by entering the class name you created.&#60;/p&#62;
&#60;p&#62;2) The Phone Number field doesn't format the phone number as it is entered.  So if you wanted to do this you'd have to do this using custom jQuery.  Gravity Forms v1.6 will introduce Javascript input masks which will enable you to do this easily.  &#60;/p&#62;
&#60;p&#62;3) If you want to center the Title and Submit Button you would have to do this with CSS.  You'd need a line of CSS for the Title and a line of CSS for the button to align them so they are centered. You would have to write this CSS.  There is a page in documentation that provides samples of how to target and style every single form element that makes up a form.  You can find it here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;In the future please create a new support forum post when you have an issue rather than adding your issue to an existing old thread which while related to the field type in question, is an unrelated issue.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Phone number field - 2 error boxes on submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/phone-number-field-2-error-boxes-on-submission#post-30570</link>
			<pubDate>Wed, 20 Jul 2011 17:41:00 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">30570@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The phone number field is shorter because it has character limitations and doesn't need to have the same width as the others by default. I'm sorry to hear that you find it &#34;aesthetically jarring&#34;. Its easy enough to change without &#34;massive CSS pushups&#34; as you called them. There are specific samples in the documentation to help you out.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;This should get you started for your sidebar form.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]

/* resize form input */
body #gform_wrapper_1 input#input_1_3 {
    width: 92%!important;
}

/* center form title */
body #gform_wrapper_1 .gform_heading .gform_title {
	text-align:center
}

/* center submit button in form footer */
body #gform_wrapper_1 .gform_footer {
	text-align:center
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Tom Bevington on "Phone number field - 2 error boxes on submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/phone-number-field-2-error-boxes-on-submission#post-30567</link>
			<pubDate>Wed, 20 Jul 2011 17:11:31 +0000</pubDate>
			<dc:creator>Tom Bevington</dc:creator>
			<guid isPermaLink="false">30567@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Am having related problems in working with the Advanced Phone Number field.&#60;/p&#62;
&#60;p&#62;I'd like to be able to have a mandatory advanced phone field:&#60;/p&#62;
&#60;p&#62;1) whose size (i.e. width) is equal to the LARGE advanced name and email fields directly above it.  This is a single-column form, and it's aesthetically jarring to have the Name and Email fields the same width followed by a phone field that's roughly half the width.  See following link:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://rtcwp.rtcriverside.webfactional.com/&#34; rel=&#34;nofollow&#34;&#62;http://rtcwp.rtcriverside.webfactional.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;2) that actually DISPLAYS to both the user AND in the captured entry fields the format:&#60;br /&#62;
(###) ### - ####.   Notice the SPACE immediately following the 2nd parentheses.  The built-in format eliminates this space and displays the number as (###)### - ####&#60;/p&#62;
&#60;p&#62;If the built-in advanced phone field can't do this, how to I set the desired input format so that it's displayed both to the user after completing the field and in the entries display after being captured.&#60;/p&#62;
&#60;p&#62;3) I would also like to center and size the Form's Title and Submit button - if possible  WITHOUT having to do massive CSS push-ups.  If each field has to be tweaked individually, could you provide me a link to an example of how to size and center such form field titles, form field text, etc?.&#60;/p&#62;
&#60;p&#62;Thanks in advance
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Phone number field - 2 error boxes on submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/phone-number-field-2-error-boxes-on-submission#post-28597</link>
			<pubDate>Mon, 27 Jun 2011 15:35:36 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">28597@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The phone number field wants the phone number in a specific format.  If you don't care about the format, use a Single Input field instead of the Phone Number field and label it Phone Number.  You can then set it as required and it will accept any input by the user.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ab24 on "Phone number field - 2 error boxes on submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/phone-number-field-2-error-boxes-on-submission#post-28570</link>
			<pubDate>Mon, 27 Jun 2011 05:24:29 +0000</pubDate>
			<dc:creator>ab24</dc:creator>
			<guid isPermaLink="false">28570@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello :)&#60;/p&#62;
&#60;p&#62;I have a basic form with a (required) telephone number field, however when it is submitted as blank, the field has 2 validation error boxes added underneath it, the first one is empty, and the second displays the correct message to the user.&#60;/p&#62;
&#60;p&#62;If i change the phone number format to &#34;(###) ### - ####&#34; in the admin, the empty error message box now comes up with &#34;Phone format: (###)###-####&#34; - how can i disable this error message without making the phone number not required?&#60;/p&#62;
&#60;p&#62;Many thanks,&#60;/p&#62;
&#60;p&#62;Aaron
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
