<?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: Simple CSS 3D Button</title>
	<atom:link href="http://www.dave-woods.co.uk/index.php/simple-css-3d-button/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dave-woods.co.uk/index.php/simple-css-3d-button/</link>
	<description></description>
	<lastBuildDate>Mon, 08 Mar 2010 05:40:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: CSSnewbie</title>
		<link>http://www.dave-woods.co.uk/index.php/simple-css-3d-button/comment-page-1/#comment-1214</link>
		<dc:creator>CSSnewbie</dc:creator>
		<pubDate>Sun, 03 Feb 2008 16:03:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.dave-woods.co.uk/?p=158#comment-1214</guid>
		<description>Clean, simple, and to the point. Just the way I like em. :)

Although I would suggest that, instead of making your state change on :hover, you might save it for :active. Most buttons change a little on the hover state, but they don&#039;t actually depress until clicked (the active state).

Great work!</description>
		<content:encoded><![CDATA[<p>Clean, simple, and to the point. Just the way I like em. <img src='http://www.dave-woods.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Although I would suggest that, instead of making your state change on :hover, you might save it for :active. Most buttons change a little on the hover state, but they don&#8217;t actually depress until clicked (the active state).</p>
<p>Great work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.dave-woods.co.uk/index.php/simple-css-3d-button/comment-page-1/#comment-1153</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 30 Jan 2008 08:48:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.dave-woods.co.uk/?p=158#comment-1153</guid>
		<description>@Joshua - Yeah that works quite well, it&#039;s not all that different but does make the effect a little more extreme

@Jermayn - Thanks, Joshua&#039;s maybe given the wrong impression by using the word &quot;movement&quot;. All he&#039;s done is increased the width of the border for two of the sides and then reversed them for the hover effect so that the hover appears a little deeper.

There&#039;s no problem with doing that from a usability perspective.</description>
		<content:encoded><![CDATA[<p>@Joshua &#8211; Yeah that works quite well, it&#8217;s not all that different but does make the effect a little more extreme</p>
<p>@Jermayn &#8211; Thanks, Joshua&#8217;s maybe given the wrong impression by using the word &#8220;movement&#8221;. All he&#8217;s done is increased the width of the border for two of the sides and then reversed them for the hover effect so that the hover appears a little deeper.</p>
<p>There&#8217;s no problem with doing that from a usability perspective.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jermayn Parker</title>
		<link>http://www.dave-woods.co.uk/index.php/simple-css-3d-button/comment-page-1/#comment-1151</link>
		<dc:creator>Jermayn Parker</dc:creator>
		<pubDate>Wed, 30 Jan 2008 06:11:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.dave-woods.co.uk/?p=158#comment-1151</guid>
		<description>Very cool indeed!!

@Joshua - Do you have an example of this moving button? I personally am a bit skeptical of the usability of that effect. So please prove me wrong!</description>
		<content:encoded><![CDATA[<p>Very cool indeed!!</p>
<p>@Joshua &#8211; Do you have an example of this moving button? I personally am a bit skeptical of the usability of that effect. So please prove me wrong!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thak&#8217;s cool links &#187; Simple CSS 3D Button</title>
		<link>http://www.dave-woods.co.uk/index.php/simple-css-3d-button/comment-page-1/#comment-1134</link>
		<dc:creator>thak&#8217;s cool links &#187; Simple CSS 3D Button</dc:creator>
		<pubDate>Tue, 29 Jan 2008 22:51:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.dave-woods.co.uk/?p=158#comment-1134</guid>
		<description>[...] Dave Woods - HTML, CSS, Web Design » Simple CSS 3D Button.</description>
		<content:encoded><![CDATA[<p>[...] Dave Woods &#8211; HTML, CSS, Web Design » Simple CSS 3D Button.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joshua</title>
		<link>http://www.dave-woods.co.uk/index.php/simple-css-3d-button/comment-page-1/#comment-1129</link>
		<dc:creator>Joshua</dc:creator>
		<pubDate>Tue, 29 Jan 2008 18:49:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.dave-woods.co.uk/?p=158#comment-1129</guid>
		<description>Nice example.  Something that I usually do with my buttons is to shift the border width by 1px on hover to give the impression of button movement.  In my experience, the movement helps to catch the user&#039;s eye a little more than just changing the border colors

Using your code:

a, a:link {
float: left;
background-color: #F00;
padding: 10px;
border-top: #FF8585 2px solid;
border-right: #410000 3px solid;
border-bottom: #410000 3px solid;
border-left: #FF8585 2px solid;
color: #FFF;
text-decoration: none;
font-weight: bold;
}
a:hover {
border-top: #410000 3px solid;
border-right: #FF8585 2px solid;
border-bottom: #FF8585 2px solid;
border-left: #410000 3px solid;</description>
		<content:encoded><![CDATA[<p>Nice example.  Something that I usually do with my buttons is to shift the border width by 1px on hover to give the impression of button movement.  In my experience, the movement helps to catch the user&#8217;s eye a little more than just changing the border colors</p>
<p>Using your code:</p>
<p>a, a:link {<br />
float: left;<br />
background-color: #F00;<br />
padding: 10px;<br />
border-top: #FF8585 2px solid;<br />
border-right: #410000 3px solid;<br />
border-bottom: #410000 3px solid;<br />
border-left: #FF8585 2px solid;<br />
color: #FFF;<br />
text-decoration: none;<br />
font-weight: bold;<br />
}<br />
a:hover {<br />
border-top: #410000 3px solid;<br />
border-right: #FF8585 2px solid;<br />
border-bottom: #FF8585 2px solid;<br />
border-left: #410000 3px solid;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.dave-woods.co.uk/index.php/simple-css-3d-button/comment-page-1/#comment-1117</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Tue, 29 Jan 2008 08:48:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.dave-woods.co.uk/?p=158#comment-1117</guid>
		<description>@ilan - That&#039;s a good point. You don&#039;t have as much control with the colour though the consistency cross browser isn&#039;t great which is what puts me off using them at the moment. This method works cross browser and renders exactly the same... call me picky.

@Edward - I completely agree, I&#039;d always use a container to target the link or if that wasn&#039;t possible apply a class to the link itself to ensure that only the correct link was being targetted. But for the purpose of the tutorial, I tried to keep it as simple as possible.</description>
		<content:encoded><![CDATA[<p>@ilan &#8211; That&#8217;s a good point. You don&#8217;t have as much control with the colour though the consistency cross browser isn&#8217;t great which is what puts me off using them at the moment. This method works cross browser and renders exactly the same&#8230; call me picky.</p>
<p>@Edward &#8211; I completely agree, I&#8217;d always use a container to target the link or if that wasn&#8217;t possible apply a class to the link itself to ensure that only the correct link was being targetted. But for the purpose of the tutorial, I tried to keep it as simple as possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web Cash &#187; Blog Archive &#187; &#187; How to Create a 3D Button Using CSS and a Gradient Image</title>
		<link>http://www.dave-woods.co.uk/index.php/simple-css-3d-button/comment-page-1/#comment-1108</link>
		<dc:creator>Web Cash &#187; Blog Archive &#187; &#187; How to Create a 3D Button Using CSS and a Gradient Image</dc:creator>
		<pubDate>Tue, 29 Jan 2008 00:31:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.dave-woods.co.uk/?p=158#comment-1108</guid>
		<description>[...] While I was browsing through dzone today, I stumbled on this 3d button css tutorial by Dave Woods. [...]</description>
		<content:encoded><![CDATA[<p>[...] While I was browsing through dzone today, I stumbled on this 3d button css tutorial by Dave Woods. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edward Turtle</title>
		<link>http://www.dave-woods.co.uk/index.php/simple-css-3d-button/comment-page-1/#comment-1105</link>
		<dc:creator>Edward Turtle</dc:creator>
		<pubDate>Mon, 28 Jan 2008 22:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dave-woods.co.uk/?p=158#comment-1105</guid>
		<description>You should use the CSS with ids or classes to make it more specific. But other than that its cool.</description>
		<content:encoded><![CDATA[<p>You should use the CSS with ids or classes to make it more specific. But other than that its cool.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ilan f</title>
		<link>http://www.dave-woods.co.uk/index.php/simple-css-3d-button/comment-page-1/#comment-1103</link>
		<dc:creator>ilan f</dc:creator>
		<pubDate>Mon, 28 Jan 2008 22:33:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.dave-woods.co.uk/?p=158#comment-1103</guid>
		<description>why don&#039;t you just use INSET and OUTSET
with the borders?</description>
		<content:encoded><![CDATA[<p>why don&#8217;t you just use INSET and OUTSET<br />
with the borders?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Rock</title>
		<link>http://www.dave-woods.co.uk/index.php/simple-css-3d-button/comment-page-1/#comment-1099</link>
		<dc:creator>Brian Rock</dc:creator>
		<pubDate>Mon, 28 Jan 2008 17:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.dave-woods.co.uk/?p=158#comment-1099</guid>
		<description>Nice tip, and good use of simple coloring to achieve a cool effect.  This could probably be enhanced if you used a gradient background for the actual button - helping reinforce the idea that light is shining on the button&#039;s surface.</description>
		<content:encoded><![CDATA[<p>Nice tip, and good use of simple coloring to achieve a cool effect.  This could probably be enhanced if you used a gradient background for the actual button &#8211; helping reinforce the idea that light is shining on the button&#8217;s surface.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
