<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Simplest transparent CSS submit button ever. The Levitating Submit Button</title>
	<atom:link href="http://seosumo.com/simplest-transparent-css-submit-button-ever-the-levitating-submit-button/feed" rel="self" type="application/rss+xml" />
	<link>http://seosumo.com/simplest-transparent-css-submit-button-ever-the-levitating-submit-button</link>
	<description>The Art of Digital Dominance</description>
	<lastBuildDate>Wed, 08 Feb 2012 18:02:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: amanda</title>
		<link>http://seosumo.com/simplest-transparent-css-submit-button-ever-the-levitating-submit-button/comment-page-1#comment-160</link>
		<dc:creator>amanda</dc:creator>
		<pubDate>Mon, 19 Oct 2009 13:04:28 +0000</pubDate>
		<guid isPermaLink="false">http://seosumo.com/?p=1244#comment-160</guid>
		<description>sergio, u rock.  I just had this incorrect.  Works great as this:

.contentSubmitButton:hover input,
.contentSubmitButton:hover #submit {
background-position:bottom right;
}

thank you sooooooo much!</description>
		<content:encoded><![CDATA[<p>sergio, u rock.  I just had this incorrect.  Works great as this:</p>
<p>.contentSubmitButton:hover input,<br />
.contentSubmitButton:hover #submit {<br />
background-position:bottom right;<br />
}</p>
<p>thank you sooooooo much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sergio</title>
		<link>http://seosumo.com/simplest-transparent-css-submit-button-ever-the-levitating-submit-button/comment-page-1#comment-158</link>
		<dc:creator>sergio</dc:creator>
		<pubDate>Mon, 19 Oct 2009 04:17:49 +0000</pubDate>
		<guid isPermaLink="false">http://seosumo.com/?p=1244#comment-158</guid>
		<description>Amanda: 
Let&#039;s make clear to others that you (I assume) made a sprite with your rollover states and are switching the position bottom or top for the hover state.

Just add the button to your label&#039;s hover rule. I assume your .contentSubmitButton is applied to the label, so for that case it should be:

.contentSubmitButton:hover input {
background-position: bottom right;
}

That will switch the background of the input inside the element of class .contentSubmitButton that is hovered.

I&#039;d use the label (or whatever tag you used for the button&#039;s container) before the .classname like label.contentSubmitButton, just in case some browser can&#039;t hover a class by itself with no element specified.</description>
		<content:encoded><![CDATA[<p>Amanda:<br />
Let&#8217;s make clear to others that you (I assume) made a sprite with your rollover states and are switching the position bottom or top for the hover state.</p>
<p>Just add the button to your label&#8217;s hover rule. I assume your .contentSubmitButton is applied to the label, so for that case it should be:</p>
<p>.contentSubmitButton:hover input {<br />
background-position: bottom right;<br />
}</p>
<p>That will switch the background of the input inside the element of class .contentSubmitButton that is hovered.</p>
<p>I&#8217;d use the label (or whatever tag you used for the button&#8217;s container) before the .classname like label.contentSubmitButton, just in case some browser can&#8217;t hover a class by itself with no element specified.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: amanda</title>
		<link>http://seosumo.com/simplest-transparent-css-submit-button-ever-the-levitating-submit-button/comment-page-1#comment-156</link>
		<dc:creator>amanda</dc:creator>
		<pubDate>Wed, 30 Sep 2009 13:03:11 +0000</pubDate>
		<guid isPermaLink="false">http://seosumo.com/?p=1244#comment-156</guid>
		<description>I am creating a rollover state for this and it has a glitch. If the mouse is on the left side, it will rollover, but the rest of the button will not. 

Here&#039;s my css:

.contentSubmitButton{
background: url(../buttonImages/submitButtonLarge.png) no-repeat top left;
display: block;
font:Verdana, Arial, Helvetica, sans-serif !important;
font-size:13px !important;
height: 38px;
width: 16px  !important;
overflow: visible;
padding: 0px 0 0 0px !important;
margin:0 0px 0px 0 !important;
}

.contentSubmitButton:hover{
background-position: bottom left;
}

.contentSubmitButton input,
.contentSubmitButton #submit {
background: url(&#039;../buttonImages/submitButtonLarge.png&#039;) no-repeat top right;
height: 38px;
font:Verdana, Arial, Helvetica, sans-serif !important;
font-size:13px !important;
color: #02004c;
margin: 0px 0px 0px 16px !important;
display: block;
border: none 0px;
padding: 0px 16px 4px 0px;
background-color: transparent;
cursor: hand;
cursor: pointer;
line-height:15px;
}

.contentSubmitButton input:hover,
.contentSubmitButton #submit:hover {
background-position:bottom right;
}


Where have I gone wrong here?  I see that your button works great!  :o)  Thanks!</description>
		<content:encoded><![CDATA[<p>I am creating a rollover state for this and it has a glitch. If the mouse is on the left side, it will rollover, but the rest of the button will not. </p>
<p>Here&#8217;s my css:</p>
<p>.contentSubmitButton{<br />
background: url(../buttonImages/submitButtonLarge.png) no-repeat top left;<br />
display: block;<br />
font:Verdana, Arial, Helvetica, sans-serif !important;<br />
font-size:13px !important;<br />
height: 38px;<br />
width: 16px  !important;<br />
overflow: visible;<br />
padding: 0px 0 0 0px !important;<br />
margin:0 0px 0px 0 !important;<br />
}</p>
<p>.contentSubmitButton:hover{<br />
background-position: bottom left;<br />
}</p>
<p>.contentSubmitButton input,<br />
.contentSubmitButton #submit {<br />
background: url(&#8216;../buttonImages/submitButtonLarge.png&#8217;) no-repeat top right;<br />
height: 38px;<br />
font:Verdana, Arial, Helvetica, sans-serif !important;<br />
font-size:13px !important;<br />
color: #02004c;<br />
margin: 0px 0px 0px 16px !important;<br />
display: block;<br />
border: none 0px;<br />
padding: 0px 16px 4px 0px;<br />
background-color: transparent;<br />
cursor: hand;<br />
cursor: pointer;<br />
line-height:15px;<br />
}</p>
<p>.contentSubmitButton input:hover,<br />
.contentSubmitButton #submit:hover {<br />
background-position:bottom right;<br />
}</p>
<p>Where have I gone wrong here?  I see that your button works great!  <img src='http://seosumo.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> )  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sergio</title>
		<link>http://seosumo.com/simplest-transparent-css-submit-button-ever-the-levitating-submit-button/comment-page-1#comment-151</link>
		<dc:creator>sergio</dc:creator>
		<pubDate>Fri, 14 Aug 2009 08:42:39 +0000</pubDate>
		<guid isPermaLink="false">http://seosumo.com/?p=1244#comment-151</guid>
		<description>I don&#039;t even consider IE6 for web developing. Sorry.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t even consider IE6 for web developing. Sorry.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shityoucantremember</title>
		<link>http://seosumo.com/simplest-transparent-css-submit-button-ever-the-levitating-submit-button/comment-page-1#comment-150</link>
		<dc:creator>shityoucantremember</dc:creator>
		<pubDate>Wed, 12 Aug 2009 12:08:43 +0000</pubDate>
		<guid isPermaLink="false">http://seosumo.com/?p=1244#comment-150</guid>
		<description>This makes me wonder if you have even considered trying it in IE6.</description>
		<content:encoded><![CDATA[<p>This makes me wonder if you have even considered trying it in IE6.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sergio</title>
		<link>http://seosumo.com/simplest-transparent-css-submit-button-ever-the-levitating-submit-button/comment-page-1#comment-148</link>
		<dc:creator>sergio</dc:creator>
		<pubDate>Sat, 08 Aug 2009 03:10:03 +0000</pubDate>
		<guid isPermaLink="false">http://seosumo.com/?p=1244#comment-148</guid>
		<description>Gondo:
This page may have tens of validation errors… but that button is not one of them. I&#039;m open to suggestions about what tag would work better than label semantically or in any other aspect.</description>
		<content:encoded><![CDATA[<p>Gondo:<br />
This page may have tens of validation errors… but that button is not one of them. I&#8217;m open to suggestions about what tag would work better than label semantically or in any other aspect.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gondo</title>
		<link>http://seosumo.com/simplest-transparent-css-submit-button-ever-the-levitating-submit-button/comment-page-1#comment-147</link>
		<dc:creator>gondo</dc:creator>
		<pubDate>Wed, 05 Aug 2009 16:15:36 +0000</pubDate>
		<guid isPermaLink="false">http://seosumo.com/?p=1244#comment-147</guid>
		<description>your html is totaly wrong, check documentation how to use label element
http://www.w3.org/TR/html401/interact/forms.html#h-17.9</description>
		<content:encoded><![CDATA[<p>your html is totaly wrong, check documentation how to use label element<br />
<a href="http://www.w3.org/TR/html401/interact/forms.html#h-17.9" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/www.w3.org/TR/html401/interact/forms.html_h-17.9?referer=');">http://www.w3.org/TR/html401/interact/forms.html#h-17.9</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike T.</title>
		<link>http://seosumo.com/simplest-transparent-css-submit-button-ever-the-levitating-submit-button/comment-page-1#comment-143</link>
		<dc:creator>Mike T.</dc:creator>
		<pubDate>Thu, 23 Jul 2009 23:21:59 +0000</pubDate>
		<guid isPermaLink="false">http://seosumo.com/?p=1244#comment-143</guid>
		<description>Oh boy, it swallowed the tag names, despite my escaping efforts. I was asking why you&#039;ve wrapped the input in a label, rather than a span or a div. :S</description>
		<content:encoded><![CDATA[<p>Oh boy, it swallowed the tag names, despite my escaping efforts. I was asking why you&#8217;ve wrapped the input in a label, rather than a span or a div. :S</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike T.</title>
		<link>http://seosumo.com/simplest-transparent-css-submit-button-ever-the-levitating-submit-button/comment-page-1#comment-142</link>
		<dc:creator>Mike T.</dc:creator>
		<pubDate>Thu, 23 Jul 2009 23:21:20 +0000</pubDate>
		<guid isPermaLink="false">http://seosumo.com/?p=1244#comment-142</guid>
		<description>Wow, this looks really nice.

 Can I ask why you chose to wrap the \ in a \? Semantically, I can&#039;t figure out what that&#039;s adding, given that the label doesn&#039;t actually contain any text. How is this approach better than just a plain old \ or ?</description>
		<content:encoded><![CDATA[<p>Wow, this looks really nice.</p>
<p> Can I ask why you chose to wrap the \ in a \? Semantically, I can&#8217;t figure out what that&#8217;s adding, given that the label doesn&#8217;t actually contain any text. How is this approach better than just a plain old \ or ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sergio</title>
		<link>http://seosumo.com/simplest-transparent-css-submit-button-ever-the-levitating-submit-button/comment-page-1#comment-144</link>
		<dc:creator>sergio</dc:creator>
		<pubDate>Thu, 23 Jul 2009 22:19:10 +0000</pubDate>
		<guid isPermaLink="false">http://seosumo.com/?p=1244#comment-144</guid>
		<description>Louis, the button rollovers fine. It just wasn&#039;t the point of this post. I updated my comment&#039;s submit button to do so. Also, I saw the button you directed me to, and when I say &quot;single image&quot; I don&#039;t mean just the faster loading but the simple creation. Having to cut a button in pieces annoys me. Not even mentioning to merge them into sprites.</description>
		<content:encoded><![CDATA[<p>Louis, the button rollovers fine. It just wasn&#8217;t the point of this post. I updated my comment&#8217;s submit button to do so. Also, I saw the button you directed me to, and when I say &#8220;single image&#8221; I don&#8217;t mean just the faster loading but the simple creation. Having to cut a button in pieces annoys me. Not even mentioning to merge them into sprites.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

