<?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: Can month numbers be changed to names?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/can-month-numbers-be-changed-to-names</link>
		<description>Gravity Support Forums Topic: Can month numbers be changed to names?</description>
		<language>en-US</language>
		<pubDate>Wed, 22 Apr 2026 09:55:12 +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/can-month-numbers-be-changed-to-names" rel="self" type="application/rss+xml" />

		<item>
			<title>David Peralty on "Can month numbers be changed to names?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-month-numbers-be-changed-to-names#post-66136</link>
			<pubDate>Fri, 13 Jul 2012 12:21:24 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">66136@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The !important tag is used to override any previously set styles, it makes it easy to create your own custom styles for forms. Feel free to add that tag to anything you need to do with relation to position form elements or otherwise styling them.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DanTurner on "Can month numbers be changed to names?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-month-numbers-be-changed-to-names#post-66135</link>
			<pubDate>Fri, 13 Jul 2012 12:16:38 +0000</pubDate>
			<dc:creator>DanTurner</dc:creator>
			<guid isPermaLink="false">66135@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Super! Thanks, Dave. Adding the !important tag worked. Easy and painless.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Can month numbers be changed to names?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-month-numbers-be-changed-to-names#post-66088</link>
			<pubDate>Fri, 13 Jul 2012 09:08:52 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">66088@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It belongs in your theme's style.css.&#60;/p&#62;
&#60;p&#62;Can you try:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.gform_wrapper form {
text-align: center !important;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>DanTurner on "Can month numbers be changed to names?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-month-numbers-be-changed-to-names#post-66053</link>
			<pubDate>Fri, 13 Jul 2012 01:28:35 +0000</pubDate>
			<dc:creator>DanTurner</dc:creator>
			<guid isPermaLink="false">66053@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Chris, I only changed &#34;left&#34; to &#34;center&#34; in forms.css, like so:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.gform_wrapper form {
	text-align: center
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I tried that code in my child stylesheet, but it did nothing. Any help on getting it in the proper spot would be great.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Can month numbers be changed to names?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-month-numbers-be-changed-to-names#post-66041</link>
			<pubDate>Thu, 12 Jul 2012 22:44:23 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">66041@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You're correct about modifying the plugin's CSS file (or any of the plugin files.) Those changes will be lost on upgrade.&#60;/p&#62;
&#60;p&#62;A better way is to add the CSS to your theme or child theme's style.css or custom.css (as appropriate.)  The trick is to make the rules more specific so they override the forms.css rules.  &#60;/p&#62;
&#60;p&#62;See this example:&#60;br /&#62;
&#60;a href=&#34;http://gravity.chrishajer.com/contact-us/&#34; rel=&#34;nofollow&#34;&#62;http://gravity.chrishajer.com/contact-us/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;That was done with this CSS in my child theme's stylesheet:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body #gform_wrapper_32 {
width:598px;
border:1px solid #C2C2C2;
padding:5px;
}
body #gform_wrapper_32 .gform_heading span.gform_description {
color:red;
display:block;
text-align:center;
}
body #gform_wrapper_32 .gform_body ul li.gfield {
text-align:center;
}
body #gform_wrapper_32 .gform_footer input[type=&#38;#39;submit&#38;#39;]  {
color:#FFFFFF;
background:red;
float:none;
display:block;
width:140px;
margin:0 auto;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You won't need all that.  Just move your rules from the plugin's forms.css to your theme's style.css and make sure the rules are more specific so they override the plugin stylesheet.&#60;/p&#62;
&#60;p&#62;If you post the CSS you added to your forms.css file, we can make it specific enough to work in your theme's stylesheet.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DanTurner on "Can month numbers be changed to names?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-month-numbers-be-changed-to-names#post-66033</link>
			<pubDate>Thu, 12 Jul 2012 21:04:32 +0000</pubDate>
			<dc:creator>DanTurner</dc:creator>
			<guid isPermaLink="false">66033@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;No wonder Web Design is so expensive! After hours of digging through your documentation and endless trial and error dead ends I managed to piece together this clumsy form:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://mortalsandangels.com/cancer-astrologicalove/&#34; rel=&#34;nofollow&#34;&#62;http://mortalsandangels.com/cancer-astrologicalove/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Not great form design, but I am exhausted.&#60;/p&#62;
&#60;p&#62;One question: How do I center the form (as shown)? I edited your forms.css to get this to happen, but that will be wiped out on the next update. What is the better way?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DanTurner on "Can month numbers be changed to names?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-month-numbers-be-changed-to-names#post-66020</link>
			<pubDate>Thu, 12 Jul 2012 17:04:40 +0000</pubDate>
			<dc:creator>DanTurner</dc:creator>
			<guid isPermaLink="false">66020@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Dave, I don't know how to get separate drop downs to work as a date unit and I can't believe that's what's being suggested. &#60;/p&#62;
&#60;p&#62;It seems far more efficient to change 1 to January and 2 to February and 3 to March, etc. 12 little changes. Where do I do that???
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DanTurner on "Can month numbers be changed to names?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-month-numbers-be-changed-to-names#post-66016</link>
			<pubDate>Thu, 12 Jul 2012 16:27:42 +0000</pubDate>
			<dc:creator>DanTurner</dc:creator>
			<guid isPermaLink="false">66016@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Virtually every site with a credit card form has a drop down showing the written MONTH. This seems so STANDARD, what is the hold up on getting an answer????
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Can month numbers be changed to names?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-month-numbers-be-changed-to-names#post-66015</link>
			<pubDate>Thu, 12 Jul 2012 16:26:48 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">66015@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;What we are trying to let you know is that the date field only uses numbers in one configuration or another. You have to use separate fields to get what you want, unless you really hack something strange together using JavaScript or something... But Gravity Forms doesn't have a hook or hack that would allow you to do what you want.&#60;/p&#62;
&#60;p&#62;If I had to cheat it, I would have them as three separate fields, make them all gf_inline for CSS class.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DanTurner on "Can month numbers be changed to names?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-month-numbers-be-changed-to-names#post-66013</link>
			<pubDate>Thu, 12 Jul 2012 16:24:17 +0000</pubDate>
			<dc:creator>DanTurner</dc:creator>
			<guid isPermaLink="false">66013@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks, Dave, but I need all three fields working together or it's not a date. There seems to be no way to do that with unrelated drop downs; the fields would simply be unrelated data.&#60;/p&#62;
&#60;p&#62;You guys already have a date form and it works. Let's use that. All I need is to know how to change the NUMBERS to WORDS. How do I do that???????
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
