<?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: forgot password button behind password field</title>
		<link>http://www.kriesi.at/support/topic/forgot-password-button-behind-password-field</link>
		<description>Support Forum - Topic: forgot password button behind password field</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 07:35:36 +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/forgot-password-button-behind-password-field" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "forgot password button behind password field"</title>
			<link>http://www.kriesi.at/support/topic/forgot-password-button-behind-password-field#post-85768</link>
			<pubDate>Thu, 29 Nov 2012 00:28:21 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">85768@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Anita,&#60;/p&#62;
&#60;p&#62;I believe the issue stems from some css in your custom.css file. Specifically:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.container .clear {
   clear: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Removing that should put the form button properly below the other content. Furthermore, changing the form rows to 100% width for just those pages will fix the weird floating issue it looks like you've been trying to fix because of the long form titles:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top.page-id-741 .form-row-first,#top.page-id-741 .form-row-last {
    width: 100%;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That will ONLY effect that specific page so there won't be any other width extension on other forms.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>superfoods on "forgot password button behind password field"</title>
			<link>http://www.kriesi.at/support/topic/forgot-password-button-behind-password-field#post-85591</link>
			<pubDate>Tue, 27 Nov 2012 16:10:58 +0000</pubDate>
			<dc:creator>superfoods</dc:creator>
			<guid isPermaLink="false">85591@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael.&#60;/p&#62;
&#60;p&#62;Sorry, is not working either. Do you have anything else you can think of?&#60;/p&#62;
&#60;p&#62;Thanks a lot,&#60;/p&#62;
&#60;p&#62;Regards, Anita
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "forgot password button behind password field"</title>
			<link>http://www.kriesi.at/support/topic/forgot-password-button-behind-password-field#post-84941</link>
			<pubDate>Thu, 22 Nov 2012 04:00:18 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">84941@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Anita,&#60;/p&#62;
&#60;p&#62;Kindly open wp-content/themes/abundance/woocommerce-config/woocommerce-mod.css and find this line of code:&#60;br /&#62;
&#60;code&#62;.form-row{overflow:hidden;zoom:1;padding:3px;margin:0 0 6px;}&#60;/code&#62;&#60;br /&#62;
and replace it with:&#60;br /&#62;
&#60;code&#62;.form-row{overflow:hidden;zoom:1;padding:0;margin:0 0 6px;}&#60;/code&#62;&#60;br /&#62;
Hope this helps. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>superfoods on "forgot password button behind password field"</title>
			<link>http://www.kriesi.at/support/topic/forgot-password-button-behind-password-field#post-84877</link>
			<pubDate>Wed, 21 Nov 2012 13:17:47 +0000</pubDate>
			<dc:creator>superfoods</dc:creator>
			<guid isPermaLink="false">84877@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael, unfortunately both codes aren't working in Chrome:-( &#60;/p&#62;
&#60;p&#62;Regards, Anita
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "forgot password button behind password field"</title>
			<link>http://www.kriesi.at/support/topic/forgot-password-button-behind-password-field#post-84422</link>
			<pubDate>Sun, 18 Nov 2012 04:32:08 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">84422@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Anita,&#60;/p&#62;
&#60;p&#62;Try to add this code in Quick CSS or custom.css:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.form-row {
   padding: 0;
}

form.login .form-row {
   width: 100%;
}

.register .form-row label {
   font-size: 10px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or, if the code above doesn't work, try this one instead:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.form-row {
   padding: 0 !important;
}

form.login .form-row {
   width: 100% !important;
}

.register .form-row label {
   font-size: 10px !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Hope this helps. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>superfoods on "forgot password button behind password field"</title>
			<link>http://www.kriesi.at/support/topic/forgot-password-button-behind-password-field#post-84315</link>
			<pubDate>Fri, 16 Nov 2012 21:36:03 +0000</pubDate>
			<dc:creator>superfoods</dc:creator>
			<guid isPermaLink="false">84315@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin,&#60;/p&#62;
&#60;p&#62;Sorry, doesn't work. Nothing changed... Any other ideas?&#60;/p&#62;
&#60;p&#62;Regards, Anita
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "forgot password button behind password field"</title>
			<link>http://www.kriesi.at/support/topic/forgot-password-button-behind-password-field#post-84288</link>
			<pubDate>Fri, 16 Nov 2012 19:32:45 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">84288@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Anita,&#60;/p&#62;
&#60;p&#62;Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top form.login .form-row.form-row-last {
float: left;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>superfoods on "forgot password button behind password field"</title>
			<link>http://www.kriesi.at/support/topic/forgot-password-button-behind-password-field#post-84130</link>
			<pubDate>Thu, 15 Nov 2012 21:11:24 +0000</pubDate>
			<dc:creator>superfoods</dc:creator>
			<guid isPermaLink="false">84130@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Peter,&#60;/p&#62;
&#60;p&#62;It looks like:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.superfoodkitchen.nl/wp-content/uploads/2012/11/password.jpg&#34; rel=&#34;nofollow&#34;&#62;http://www.superfoodkitchen.nl/wp-content/uploads/2012/11/password.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Can you change the second field to the right?&#60;/p&#62;
&#60;p&#62;Thanks and regards, Anita
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "forgot password button behind password field"</title>
			<link>http://www.kriesi.at/support/topic/forgot-password-button-behind-password-field#post-84027</link>
			<pubDate>Thu, 15 Nov 2012 06:34:02 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">84027@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Try to add following css code to css/custom.css:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;form.login .form-row {
width: 70%;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>superfoods on "forgot password button behind password field"</title>
			<link>http://www.kriesi.at/support/topic/forgot-password-button-behind-password-field#post-83973</link>
			<pubDate>Wed, 14 Nov 2012 19:55:44 +0000</pubDate>
			<dc:creator>superfoods</dc:creator>
			<guid isPermaLink="false">83973@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin, here is the attachement. The orange button when you forgot your password disappears behind an other field..&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.superfoodkitchen.nl/wp-content/uploads/2012/11/checkout_login.jpg&#34; rel=&#34;nofollow&#34;&#62;http://www.superfoodkitchen.nl/wp-content/uploads/2012/11/checkout_login.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards, Anita
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "forgot password button behind password field"</title>
			<link>http://www.kriesi.at/support/topic/forgot-password-button-behind-password-field#post-83714</link>
			<pubDate>Tue, 13 Nov 2012 18:24:17 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">83714@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Anita,&#60;/p&#62;
&#60;p&#62;Can we see the page you are talking about?&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>superfoods on "forgot password button behind password field"</title>
			<link>http://www.kriesi.at/support/topic/forgot-password-button-behind-password-field#post-83679</link>
			<pubDate>Tue, 13 Nov 2012 16:38:46 +0000</pubDate>
			<dc:creator>superfoods</dc:creator>
			<guid isPermaLink="false">83679@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, when you want to log in and you forgot your password, the button can not be seen because it is behind the password field. How can i adjust that? Thanks for your time!&#60;/p&#62;
&#60;p&#62;Best regards, Anita
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
