<?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: Standard HTML Field Center text</title>
		<link>https://legacy.forums.gravityhelp.com/topic/standard-html-field-center-text</link>
		<description>Gravity Support Forums Topic: Standard HTML Field Center text</description>
		<language>en-US</language>
		<pubDate>Thu, 23 Apr 2026 00:25:26 +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/standard-html-field-center-text" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Standard HTML Field Center text"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/standard-html-field-center-text#post-98010</link>
			<pubDate>Sun, 02 Dec 2012 15:02:23 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">98010@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Glad you got that worked out.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>InsightDezign on "Standard HTML Field Center text"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/standard-html-field-center-text#post-97909</link>
			<pubDate>Sun, 02 Dec 2012 06:36:59 +0000</pubDate>
			<dc:creator>InsightDezign</dc:creator>
			<guid isPermaLink="false">97909@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I do now. Thank You! Worked like a charm. Don't know why I was having such a hard time with that.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Standard HTML Field Center text"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/standard-html-field-center-text#post-97842</link>
			<pubDate>Sat, 01 Dec 2012 23:37:55 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">97842@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Now that the class is present in the HTML field (You can drop the &#34;html&#34; part of the div tag - I was being overly cautious there giving it two classes.  We don't need &#60;em&#62;html&#60;/em&#62; there) do you have the corresponding CSS in one of your stylesheets?  I was able to add this and center the headline and the paragraph:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper li.gfield_html div.aligncenter {
    text-align:center;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Screenshot: &#60;a href=&#34;http://minus.com/lbBYHT8p53SXZ&#34; rel=&#34;nofollow&#34;&#62;http://minus.com/lbBYHT8p53SXZ&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>InsightDezign on "Standard HTML Field Center text"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/standard-html-field-center-text#post-97751</link>
			<pubDate>Sat, 01 Dec 2012 12:05:14 +0000</pubDate>
			<dc:creator>InsightDezign</dc:creator>
			<guid isPermaLink="false">97751@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I updated all of them to the following: &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;html aligncenter&#38;quot;&#38;gt;
&#38;lt;h1&#38;gt;Gifts for Gerritsen Beach&#38;lt;/h1&#38;gt;
&#38;lt;p&#38;gt;C/O Janet Kennedy&#38;lt;br /&#38;gt;
P.S. 277 Gerritsen Beach&#38;lt;br /&#38;gt;
2529 Gerritsen Avenue &#38;lt;br /&#38;gt;
Brooklyn, N.Y. 11229&#38;lt;/p&#38;gt;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I then ran the page the w3c validator and didn't find anything improperly closed. If I missed something could you let me know? I still can't get it to center.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Standard HTML Field Center text"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/standard-html-field-center-text#post-97577</link>
			<pubDate>Sat, 01 Dec 2012 02:36:22 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">97577@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Looks like you have a couple different approaches going on there, or some invalid HTML.  There are some HTML fields with divs and some with improperly closed HTML tags.  Please choose one approach (my recommendation would be a div with a class of &#34;aligncenter&#34;) and then clean up the invalid HTML.  At that point, we should be able to style all the aligncenter fields.  I was able center the fields by targeting them by ID, but that's not a good long term solution.  &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
li#field_12_29 {
    display:block;
    margin:0 auto;
    text-align:center;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Better to wrap the whole field in a div and give the div a class you can target.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
&#38;lt;div class=&#38;quot;html aligncenter&#38;quot;&#38;gt;
    Gifts for Gerritsen Beach&#38;lt;br /&#38;gt;
    C/O Janet Kennedy&#38;lt;br /&#38;gt;
    P.S. 277 Gerritsen Beach&#38;lt;br /&#38;gt;
    2529 Gerritsen Avenue&#38;lt;br /&#38;gt;
    Brooklyn, N.Y. 11229
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>InsightDezign on "Standard HTML Field Center text"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/standard-html-field-center-text#post-97516</link>
			<pubDate>Sat, 01 Dec 2012 00:29:45 +0000</pubDate>
			<dc:creator>InsightDezign</dc:creator>
			<guid isPermaLink="false">97516@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Each section has a information about where you are donating. For Example&#60;br /&#62;
Gifts for Gerritsen Beach&#60;br /&#62;
C/O Janet Kennedy&#60;br /&#62;
P.S. 277 Gerritsen Beach&#60;br /&#62;
2529 Gerritsen Avenue&#60;br /&#62;
Brooklyn, N.Y. 11229&#60;/p&#62;
&#60;p&#62;I used an html field to enter that and can't get the text to center.&#60;/p&#62;
&#60;p&#62;I really appreciate you looking at this.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Standard HTML Field Center text"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/standard-html-field-center-text#post-97371</link>
			<pubDate>Fri, 30 Nov 2012 14:52:39 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">97371@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;And so what exactly do you need/want centered?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>InsightDezign on "Standard HTML Field Center text"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/standard-html-field-center-text#post-97364</link>
			<pubDate>Fri, 30 Nov 2012 14:27:55 +0000</pubDate>
			<dc:creator>InsightDezign</dc:creator>
			<guid isPermaLink="false">97364@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Sure and Thank you. &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.family-to-family.org/emergency-needs/toy-donations-for-sandys-kids/&#34; rel=&#34;nofollow&#34;&#62;http://www.family-to-family.org/emergency-needs/toy-donations-for-sandys-kids/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Standard HTML Field Center text"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/standard-html-field-center-text#post-97357</link>
			<pubDate>Fri, 30 Nov 2012 14:15:11 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">97357@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can you please link to your form so we can see what other CSS might be affecting it?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>InsightDezign on "Standard HTML Field Center text"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/standard-html-field-center-text#post-97327</link>
			<pubDate>Fri, 30 Nov 2012 12:45:35 +0000</pubDate>
			<dc:creator>InsightDezign</dc:creator>
			<guid isPermaLink="false">97327@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have used a standard HTML field to put a Name and Address above a section in a form. My trouble is I cannot get the text to center. I have tried wrapping the text in both a &#38;lt;p&#38;gt; or a &#38;lt;span&#38;gt; with this class:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Neither is working. Could you help me center my text?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
