<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Support Forum - Topic: Moving Contact Form Labels Above Fields</title>
		<link>http://www.kriesi.at/support/topic/moving-contact-form-labels-above-fields</link>
		<description>Support Forum - Topic: Moving Contact Form Labels Above Fields</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 22:45:46 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/moving-contact-form-labels-above-fields" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "Moving Contact Form Labels Above Fields"</title>
			<link>http://www.kriesi.at/support/topic/moving-contact-form-labels-above-fields#post-85245</link>
			<pubDate>Sun, 25 Nov 2012 01:19:37 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">85245@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;@emoshun: Thanks.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>emoshun on "Moving Contact Form Labels Above Fields"</title>
			<link>http://www.kriesi.at/support/topic/moving-contact-form-labels-above-fields#post-85236</link>
			<pubDate>Sat, 24 Nov 2012 21:46:55 +0000</pubDate>
			<dc:creator>emoshun</dc:creator>
			<guid isPermaLink="false">85236@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;*moved this question to the correct theme sub forum.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "Moving Contact Form Labels Above Fields"</title>
			<link>http://www.kriesi.at/support/topic/moving-contact-form-labels-above-fields#post-71306</link>
			<pubDate>Thu, 16 Aug 2012 05:03:16 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">71306@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi NivedRed,&#60;/p&#62;
&#60;p&#62;If you open framework/php/class-form-generator.php and scroll to lines 155 - 157 you'll see the following:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$this-&#38;gt;elements_html .= &#38;quot;&#38;lt;p class=&#38;#39;&#38;quot;.$p_class.&#38;quot;&#38;#39; id=&#38;#39;element_$id&#38;#39;&#38;gt;&#38;quot;;
$this-&#38;gt;elements_html .= &#38;#39;    &#38;lt;input name=&#38;quot;&#38;#39;.$id.&#38;#39;&#38;quot; class=&#38;quot;text_input &#38;#39;.$element_class.&#38;#39;&#38;quot; type=&#38;quot;text&#38;quot; id=&#38;quot;&#38;#39;.$id.&#38;#39;&#38;quot; value=&#38;quot;&#38;#39;.$value.&#38;#39;&#38;quot;/&#38;gt;&#38;lt;label for=&#38;quot;&#38;#39;.$id.&#38;#39;&#38;quot;&#38;gt;&#38;#39;.$element[&#38;#39;label&#38;#39;].$required.&#38;#39;&#38;lt;/label&#38;gt;&#38;#39;;
$this-&#38;gt;elements_html .= &#38;quot;&#38;lt;/p&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The second $this has the code for the label which is this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;label for=&#38;quot;&#38;#39;.$id.&#38;#39;&#38;quot;&#38;gt;&#38;#39;.$element[&#38;#39;label&#38;#39;].$required.&#38;#39;&#38;lt;/label&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I believe all you need to do is move that ahead of the input like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$this-&#38;gt;elements_html .= &#38;quot;&#38;lt;p class=&#38;#39;&#38;quot;.$p_class.&#38;quot;&#38;#39; id=&#38;#39;element_$id&#38;#39;&#38;gt;&#38;quot;;
$this-&#38;gt;elements_html .= &#38;#39;    &#38;lt;label for=&#38;quot;&#38;#39;.$id.&#38;#39;&#38;quot;&#38;gt;&#38;#39;.$element[&#38;#39;label&#38;#39;].$required.&#38;#39;&#38;lt;/label&#38;gt;&#38;lt;br /&#38;gt;&#38;lt;input name=&#38;quot;&#38;#39;.$id.&#38;#39;&#38;quot; class=&#38;quot;text_input &#38;#39;.$element_class.&#38;#39;&#38;quot; type=&#38;quot;text&#38;quot; id=&#38;quot;&#38;#39;.$id.&#38;#39;&#38;quot; value=&#38;quot;&#38;#39;.$value.&#38;#39;&#38;quot;/&#38;gt;&#38;#39;;
$this-&#38;gt;elements_html .= &#38;quot;&#38;lt;/p&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I added a BR in between so the label and input would be on separate lines.&#60;/p&#62;
&#60;p&#62;Try that and see what it does. You may have to modify the CSS to position it correctly.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>NivedRed on "Moving Contact Form Labels Above Fields"</title>
			<link>http://www.kriesi.at/support/topic/moving-contact-form-labels-above-fields#post-70977</link>
			<pubDate>Tue, 14 Aug 2012 14:41:25 +0000</pubDate>
			<dc:creator>NivedRed</dc:creator>
			<guid isPermaLink="false">70977@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I've looked through contact-form.php and class-form-generator.php but I can't seem to find a way to move the contact page field labels above the fields. I can do an inspect element in Chromium and slide the &#60;code&#62;&#38;lt;label for=&#34;avia_first_and_last_name&#34;&#38;gt;First and Last Name*&#38;lt;/label&#38;gt;&#60;/code&#62; above &#60;code&#62;&#38;lt;p class=&#34;&#34; id=&#34;element_avia_first_and_last_name&#34;&#38;gt;    &#38;lt;input name=&#34;avia_first_and_last_name&#34; class=&#34;text_input is_empty&#34; type=&#34;text&#34; id=&#34;avia_first_and_last_name&#34; value=&#34;&#34; style=&#34;background-image: none; background-position: 0% 0%; background-repeat: repeat repeat; &#34;&#38;gt;&#38;lt;/p&#38;gt;&#60;/code&#62;, but I'm not sure how to translate that into the theme itself. I don't want to mess with the CSS files unless I know exactly what I should edit. Anybody have a solution?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
