<?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: Pure CSS Image Hover</title>
	<atom:link href="http://kyleschaeffer.com/best-practices/pure-css-image-hover/feed/" rel="self" type="application/rss+xml" />
	<link>http://kyleschaeffer.com/best-practices/pure-css-image-hover/</link>
	<description>Web Design &#38; SharePoint Branding</description>
	<lastBuildDate>Wed, 16 May 2012 16:07:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: JJ</title>
		<link>http://kyleschaeffer.com/best-practices/pure-css-image-hover/#comment-3285</link>
		<dc:creator>JJ</dc:creator>
		<pubDate>Mon, 30 Apr 2012 21:32:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.kyleschaeffer.com/?p=142#comment-3285</guid>
		<description>Wow, thread for over a year!!!
Trying to implement in a dynamic PHTML page and its not working although it works great in an HTML doc.  What do I have to change to make that work, if its possible?</description>
		<content:encoded><![CDATA[<p>Wow, thread for over a year!!!<br />
Trying to implement in a dynamic PHTML page and its not working although it works great in an HTML doc.  What do I have to change to make that work, if its possible?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lings</title>
		<link>http://kyleschaeffer.com/best-practices/pure-css-image-hover/#comment-3281</link>
		<dc:creator>Lings</dc:creator>
		<pubDate>Sat, 21 Apr 2012 07:20:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.kyleschaeffer.com/?p=142#comment-3281</guid>
		<description>I pasted the full code, but only portion of it seems to get posted! sorry</description>
		<content:encoded><![CDATA[<p>I pasted the full code, but only portion of it seems to get posted! sorry</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lings</title>
		<link>http://kyleschaeffer.com/best-practices/pure-css-image-hover/#comment-3280</link>
		<dc:creator>Lings</dc:creator>
		<pubDate>Sat, 21 Apr 2012 07:18:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.kyleschaeffer.com/?p=142#comment-3280</guid>
		<description>Full Code is here!

[code]




.image
{
height:300px;
width:500px;
background: url(firstimage.jpg);
}

.image:hover
{
background: url(hoverimage.jpg);
}



&lt;a href=&quot;#&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;


[/code]</description>
		<content:encoded><![CDATA[<p>Full Code is here!</p>
<div class="cic_codes_div"><code></p>
<p>.image<br />
{<br />
height:300px;<br />
width:500px;<br />
background: url(firstimage.jpg);<br />
}</p>
<p>.image:hover<br />
{<br />
background: url(hoverimage.jpg);<br />
}</p>
<p>&lt;a href=&quot;#&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;</p>
<p></code></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lings</title>
		<link>http://kyleschaeffer.com/best-practices/pure-css-image-hover/#comment-3279</link>
		<dc:creator>Lings</dc:creator>
		<pubDate>Sat, 21 Apr 2012 07:17:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.kyleschaeffer.com/?p=142#comment-3279</guid>
		<description>Here is another simple CSS code!
 
Copy and paste it is sure to work. It is pure CSS. Do not forget to change the paths to your images.
You may also change the height and width of the images.







.image
{
height:300px;
width:500px;
background: url(firstimage.jpg);
}

.image:hover
{
background: url(hoverimage.jpg);
}



&lt;a href=&quot;#&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;




Have fun!</description>
		<content:encoded><![CDATA[<p>Here is another simple CSS code!</p>
<p>Copy and paste it is sure to work. It is pure CSS. Do not forget to change the paths to your images.<br />
You may also change the height and width of the images.</p>
<p>.image<br />
{<br />
height:300px;<br />
width:500px;<br />
background: url(firstimage.jpg);<br />
}</p>
<p>.image:hover<br />
{<br />
background: url(hoverimage.jpg);<br />
}</p>
<p><a href="#" rel="nofollow"></a></p>
<p>Have fun!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: red</title>
		<link>http://kyleschaeffer.com/best-practices/pure-css-image-hover/#comment-3277</link>
		<dc:creator>red</dc:creator>
		<pubDate>Fri, 20 Apr 2012 07:57:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.kyleschaeffer.com/?p=142#comment-3277</guid>
		<description>bebright02 - I couldn&#039;t get it to work either  but got it to work by making 2 images

.buttonLink {
	display: block;
	text-indent: -99999px;
	width:164px;
	height:56px;
	background-image: url(../images/h_recruit.gif);
}
.buttonLink:hover {
	background-image: url(../images/h_recruit_01.gif);
	background-position: 0 0;

}</description>
		<content:encoded><![CDATA[<p>bebright02 &#8211; I couldn&#8217;t get it to work either  but got it to work by making 2 images</p>
<p>.buttonLink {<br />
	display: block;<br />
	text-indent: -99999px;<br />
	width:164px;<br />
	height:56px;<br />
	background-image: url(../images/h_recruit.gif);<br />
}<br />
.buttonLink:hover {<br />
	background-image: url(../images/h_recruit_01.gif);<br />
	background-position: 0 0;</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fysisoft</title>
		<link>http://kyleschaeffer.com/best-practices/pure-css-image-hover/#comment-3263</link>
		<dc:creator>fysisoft</dc:creator>
		<pubDate>Sat, 14 Apr 2012 19:56:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.kyleschaeffer.com/?p=142#comment-3263</guid>
		<description>wow thats really great</description>
		<content:encoded><![CDATA[<p>wow thats really great</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kunal</title>
		<link>http://kyleschaeffer.com/best-practices/pure-css-image-hover/#comment-3257</link>
		<dc:creator>Kunal</dc:creator>
		<pubDate>Thu, 12 Apr 2012 09:48:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.kyleschaeffer.com/?p=142#comment-3257</guid>
		<description>It worked buddy thanks a lot...</description>
		<content:encoded><![CDATA[<p>It worked buddy thanks a lot&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dorinda</title>
		<link>http://kyleschaeffer.com/best-practices/pure-css-image-hover/#comment-3250</link>
		<dc:creator>Dorinda</dc:creator>
		<pubDate>Fri, 06 Apr 2012 03:47:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.kyleschaeffer.com/?p=142#comment-3250</guid>
		<description>Hi I am trying to do something very similar to what you are showing but I am stuck,  I do not have one image file I actually have two.  I know that jquery will do what I want but I dont know jquery and would like to do this with CSS, what I need is to have the image when selected be one image and when clicked off or not selected be another one.

I could really use the help and just dont know where to start.

Thanks in advance.
D</description>
		<content:encoded><![CDATA[<p>Hi I am trying to do something very similar to what you are showing but I am stuck,  I do not have one image file I actually have two.  I know that jquery will do what I want but I dont know jquery and would like to do this with CSS, what I need is to have the image when selected be one image and when clicked off or not selected be another one.</p>
<p>I could really use the help and just dont know where to start.</p>
<p>Thanks in advance.<br />
D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anuncios Clasificados</title>
		<link>http://kyleschaeffer.com/best-practices/pure-css-image-hover/#comment-3246</link>
		<dc:creator>Anuncios Clasificados</dc:creator>
		<pubDate>Sat, 31 Mar 2012 01:37:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.kyleschaeffer.com/?p=142#comment-3246</guid>
		<description>This effect is very simple css, but in present day uses many web pages. is something attractive and loves people. I too like the look of the effect on the web. as thanks for sharing your post. there is nothing better than a website with good design!

George</description>
		<content:encoded><![CDATA[<p>This effect is very simple css, but in present day uses many web pages. is something attractive and loves people. I too like the look of the effect on the web. as thanks for sharing your post. there is nothing better than a website with good design!</p>
<p>George</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joomla Developer Nepal</title>
		<link>http://kyleschaeffer.com/best-practices/pure-css-image-hover/#comment-3243</link>
		<dc:creator>Joomla Developer Nepal</dc:creator>
		<pubDate>Tue, 27 Mar 2012 15:10:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.kyleschaeffer.com/?p=142#comment-3243</guid>
		<description>Thanks a lot, I am really searching for this.  I need this for my new joomla based website.</description>
		<content:encoded><![CDATA[<p>Thanks a lot, I am really searching for this.  I need this for my new joomla based website.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

