<?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"
	>
<channel>
	<title>Comments on: Preload :hover images in CSS</title>
	<atom:link href="http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/</link>
	<description>Hypertext rulez™</description>
	<pubDate>Sun, 12 Oct 2008 05:03:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Martin Bour</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-4236</link>
		<dc:creator>Martin Bour</dc:creator>
		<pubDate>Sun, 19 Nov 2006 14:01:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-4236</guid>
		<description>I landed on your site looking for a way to preload background images for links.  I could not get your solution to work.  This is what I was doing:
&lt;code&gt;a.about {
background: url(images/menu/about_ON.gif) 50% 50% no-repeat;
}
a:link.about {
background: url(image/menu/about.gif) 50% 50% no-repeat;
}
a:hover.about, a:focus.about {
background: url(images/menu/about_ON.gif) 50% 50% no-repeat;
}&lt;/code&gt;

I found another solution which seemed to work for me.  I ended up creating a div on the page with class imageLoader which looked like this:
&lt;code&gt;.imageLoader {
        background: url(images/menu/about_ON.gif);
        background: url(images/menu/products_ON.gif);
        background: url(images/menu/downloads_ON.gif);
        background: url(images/menu/messages_ON.gif);
        background: url(images/menu/news_ON.gif);
        background: url(images/menu/contact_ON.gif);
        visibility: hidden;
}&lt;/code&gt;

then I had my link backgrounds set up normally with a, and a:hover classes.

it is working on mac (Safari and Netscape), but have not tested all browsers.</description>
		<content:encoded><![CDATA[<p>I landed on your site looking for a way to preload background images for links.  I could not get your solution to work.  This is what I was doing:<br />
<code>a.about {<br />
background: url(images/menu/about_ON.gif) 50% 50% no-repeat;<br />
}<br />
a:link.about {<br />
background: url(image/menu/about.gif) 50% 50% no-repeat;<br />
}<br />
a:hover.about, a:focus.about {<br />
background: url(images/menu/about_ON.gif) 50% 50% no-repeat;<br />
}</code></p>
<p>I found another solution which seemed to work for me.  I ended up creating a div on the page with class imageLoader which looked like this:<br />
<code>.imageLoader {<br />
        background: url(images/menu/about_ON.gif);<br />
        background: url(images/menu/products_ON.gif);<br />
        background: url(images/menu/downloads_ON.gif);<br />
        background: url(images/menu/messages_ON.gif);<br />
        background: url(images/menu/news_ON.gif);<br />
        background: url(images/menu/contact_ON.gif);<br />
        visibility: hidden;<br />
}</code></p>
<p>then I had my link backgrounds set up normally with a, and a:hover classes.</p>
<p>it is working on mac (Safari and Netscape), but have not tested all browsers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Recalde</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1706</link>
		<dc:creator>Lucas Recalde</dc:creator>
		<pubDate>Tue, 03 Jan 2006 19:46:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1706</guid>
		<description>Thanks a lot. I apply your solution but i have to do some changes to work in IE. I've use a shim image for each menu. The result is XHTML 1.0 compliant and works very well. You can check it at www.doliaku.com.ar (is the main menu).
PS: sorry for my english language, i hope you understand what i am trying to say!</description>
		<content:encoded><![CDATA[<p>Thanks a lot. I apply your solution but i have to do some changes to work in IE. I&#8217;ve use a shim image for each menu. The result is XHTML 1.0 compliant and works very well. You can check it at <a href="http://www.doliaku.com.ar" rel="nofollow">http://www.doliaku.com.ar</a> (is the main menu).<br />
PS: sorry for my english language, i hope you understand what i am trying to say!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: moo</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1703</link>
		<dc:creator>moo</dc:creator>
		<pubDate>Tue, 03 Jan 2006 04:24:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1703</guid>
		<description>are you sure is's working? i've tested under xpsp2 lastest patched with httpwatch, the hover image is NOT preloaded</description>
		<content:encoded><![CDATA[<p>are you sure is&#8217;s working? i&#8217;ve tested under xpsp2 lastest patched with httpwatch, the hover image is NOT preloaded</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cuzog</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1449</link>
		<dc:creator>Cuzog</dc:creator>
		<pubDate>Mon, 21 Nov 2005 00:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1449</guid>
		<description>Just thought I'd let the people having problems know that the reason it doesn't work as written here in IE is that IE goes with the "&lt;code&gt;a&lt;/code&gt;" background rather than the "&lt;code&gt;a:link&lt;/code&gt;" background when the link is already visited. The corrected code that also works in IE is this:
&lt;code&gt;
a { background: url(image_hover.gif); }
a:link,
a:visited { background: url(image_default.gif); }
a:hover,
a:focus { background: url(image_hover.gif); }
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Just thought I&#8217;d let the people having problems know that the reason it doesn&#8217;t work as written here in IE is that IE goes with the &#8220;<code>a</code>&#8221; background rather than the &#8220;<code>a:link</code>&#8221; background when the link is already visited. The corrected code that also works in IE is this:<br />
<code><br />
a { background: url(image_hover.gif); }<br />
a:link,<br />
a:visited { background: url(image_default.gif); }<br />
a:hover,<br />
a:focus { background: url(image_hover.gif); }<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1376</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 07 Nov 2005 21:52:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1376</guid>
		<description>I ran into the same problem where I was using list elements for a menu, and all menu items had its own image / hover-image pair. The solutions I'd seen I didn't like or didn't work so I came up with a solution I'm happy with and which seems to work always to get rid of the flicker. The solution I came up with is to simply add the hover state image within the HREF and give the image a visibility:hidden style (I'm using style="preLoad" and then have the CSS in a seperate file). I feel this is the 'cleanest' way to do it without too much overhead.

For an example have a look at the source code of &lt;a href="http://www.europehosting.com"&gt;this site&lt;/a&gt;.

Just my 2 cents, hope it helps.
Mike.



&lt;code&gt;</description>
		<content:encoded><![CDATA[<p>I ran into the same problem where I was using list elements for a menu, and all menu items had its own image / hover-image pair. The solutions I&#8217;d seen I didn&#8217;t like or didn&#8217;t work so I came up with a solution I&#8217;m happy with and which seems to work always to get rid of the flicker. The solution I came up with is to simply add the hover state image within the HREF and give the image a visibility:hidden style (I&#8217;m using style=&#8221;preLoad&#8221; and then have the CSS in a seperate file). I feel this is the &#8216;cleanest&#8217; way to do it without too much overhead.</p>
<p>For an example have a look at the source code of <a href="http://www.europehosting.com">this site</a>.</p>
<p>Just my 2 cents, hope it helps.<br />
Mike.</p>
<p><code></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1346</link>
		<dc:creator>Matthew</dc:creator>
		<pubDate>Tue, 25 Oct 2005 17:09:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1346</guid>
		<description>This seems like such a cool and simple way of dealing with preloading backgrounds, and I understand how it is &lt;i&gt;supposed&lt;/i&gt; to work - but I couldn't get it to work in any browser I tried. Has &lt;i&gt;ANYONE&lt;/i&gt; had success with this? And could you point out an example of it working?

Back to javascript preloading for now...</description>
		<content:encoded><![CDATA[<p>This seems like such a cool and simple way of dealing with preloading backgrounds, and I understand how it is <i>supposed</i> to work - but I couldn&#8217;t get it to work in any browser I tried. Has <i>ANYONE</i> had success with this? And could you point out an example of it working?</p>
<p>Back to javascript preloading for now&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: feaverish</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1294</link>
		<dc:creator>feaverish</dc:creator>
		<pubDate>Wed, 12 Oct 2005 20:23:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1294</guid>
		<description>Update: I still couldn't get this technique to work, but I was able to get the same effect by applying the hover image to the background of the container element (in my case the list item element) and the default, non-hover image to the contained link states (except :hover, obviously). The only drawback (besides a ton of IDs) is that a visitor with a slow connection will see the hover image load before the default image. In my case it wasn't a big deal, and it actually looks kind of cool.

Zeldman details the procedure &lt;a href="http://www.zeldman.com/daily/0203c.shtml#mar1303"&gt;here&lt;/a&gt; (2nd item).</description>
		<content:encoded><![CDATA[<p>Update: I still couldn&#8217;t get this technique to work, but I was able to get the same effect by applying the hover image to the background of the container element (in my case the list item element) and the default, non-hover image to the contained link states (except :hover, obviously). The only drawback (besides a ton of IDs) is that a visitor with a slow connection will see the hover image load before the default image. In my case it wasn&#8217;t a big deal, and it actually looks kind of cool.</p>
<p>Zeldman details the procedure <a href="http://www.zeldman.com/daily/0203c.shtml#mar1303">here</a> (2nd item).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: feaverish</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1290</link>
		<dc:creator>feaverish</dc:creator>
		<pubDate>Wed, 12 Oct 2005 15:55:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1290</guid>
		<description>Wow, I just &lt;em&gt;can't&lt;/em&gt; get this to work. I'm using unique IDs for each of the links; could this be the problem? My code looks something like this:
&lt;code&gt;#home {background: url(image-hover.jpg)}
#home:link {background: url(image.jpg)}
#home:visited {background: url(image.jpg)}
#home:hover {background: url(image-hover.jpg)}&lt;/code&gt;

The hover image does &lt;em&gt;not&lt;/em&gt; preload for me at all; I get a flicker while the hover image loads for the first time in every browser (though it seems like &lt;em&gt;sometimes&lt;/em&gt; it preloads the hover image in Safari; don't ask me why).

What am I doing wrong? (Oh and you can see the site?and flickering?in action at &lt;a href="http://www.lisadejohn.com" title="Lisa DeJohn"&gt;www.lisadejohn.com&lt;/a&gt;.)</description>
		<content:encoded><![CDATA[<p>Wow, I just <em>can&#8217;t</em> get this to work. I&#8217;m using unique IDs for each of the links; could this be the problem? My code looks something like this:<br />
<code>#home {background: url(image-hover.jpg)}<br />
#home:link {background: url(image.jpg)}<br />
#home:visited {background: url(image.jpg)}<br />
#home:hover {background: url(image-hover.jpg)}</code></p>
<p>The hover image does <em>not</em> preload for me at all; I get a flicker while the hover image loads for the first time in every browser (though it seems like <em>sometimes</em> it preloads the hover image in Safari; don&#8217;t ask me why).</p>
<p>What am I doing wrong? (Oh and you can see the site?and flickering?in action at <a href="http://www.lisadejohn.com" title="Lisa DeJohn">http://www.lisadejohn.com</a>.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jehiah</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1106</link>
		<dc:creator>jehiah</dc:creator>
		<pubDate>Mon, 19 Sep 2005 03:21:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-1106</guid>
		<description>Ok, I'm not a huge fan of preloading images in css, but I could see it's uses. If any of you are looking for something in Javascript I have a clean implementation up on my site &lt;a href="http://jehiah.com/archive/simple-swap"&gt;http://jehiah.com/archive/simple-swap&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Ok, I&#8217;m not a huge fan of preloading images in css, but I could see it&#8217;s uses. If any of you are looking for something in Javascript I have a clean implementation up on my site <a href="http://jehiah.com/archive/simple-swap">http://jehiah.com/archive/simple-swap</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-842</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Sat, 06 Aug 2005 09:08:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-842</guid>
		<description>Great idea, saved me a load of trouble.

I think the :hover class needs to be defined last though. 

This setup works for me:
&lt;code&gt;a{background: url(hoverimage.gif) 30px 40% no-repeat;}
a:link,a:visited{background: url(normalimage.gif) 30px 40% no-repeat;}
a:hover{background: url(hoverimage.gif) 30px 40% no-repeat;}&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Great idea, saved me a load of trouble.</p>
<p>I think the :hover class needs to be defined last though. </p>
<p>This setup works for me:<br />
<code>a{background: url(hoverimage.gif) 30px 40% no-repeat;}<br />
a:link,a:visited{background: url(normalimage.gif) 30px 40% no-repeat;}<br />
a:hover{background: url(hoverimage.gif) 30px 40% no-repeat;}</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Keogh</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-757</link>
		<dc:creator>Matt Keogh</dc:creator>
		<pubDate>Fri, 08 Jul 2005 09:48:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-757</guid>
		<description>argh! Just found out about the IE Image flicker problem! Is there no end to this &lt;a href="http://dean.edwards.name/my/flicker.html"&gt;madness!?&lt;/a&gt;

It appears that the bg image does load into the cache but then expires or something after a short while and the page reloads from the server rather than the cache.

great.</description>
		<content:encoded><![CDATA[<p>argh! Just found out about the IE Image flicker problem! Is there no end to this <a href="http://dean.edwards.name/my/flicker.html">madness!?</a></p>
<p>It appears that the bg image does load into the cache but then expires or something after a short while and the page reloads from the server rather than the cache.</p>
<p>great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Keogh</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-756</link>
		<dc:creator>Matt Keogh</dc:creator>
		<pubDate>Fri, 08 Jul 2005 09:13:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-756</guid>
		<description>I suppose another technique would be set the background inside a different element such as a list item  and then use the background position to move this away.

No as elagant as the above method though...</description>
		<content:encoded><![CDATA[<p>I suppose another technique would be set the background inside a different element such as a list item  and then use the background position to move this away.</p>
<p>No as elagant as the above method though&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Keogh</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-755</link>
		<dc:creator>Matt Keogh</dc:creator>
		<pubDate>Fri, 08 Jul 2005 08:52:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-755</guid>
		<description>Eric, thanks for looking into this for me but I meant to leave that comment out. You can't have a comma after the declaration only after the selector. 

I re-checked my method looking at my temporary internet files folder and the rollover image does not appear in there until after I have rolled over (it does not get preloaded).

I have re-tried the above method and it shows the rollover image without rolling over. It is as though the a:link does nothing. I am going to look into this further.

Does anyone have a link to a working example so I can work out what I am doing wrong and confirm this works?

On a side note - the a:focus does not work for IE but a:active does.</description>
		<content:encoded><![CDATA[<p>Eric, thanks for looking into this for me but I meant to leave that comment out. You can&#8217;t have a comma after the declaration only after the selector. </p>
<p>I re-checked my method looking at my temporary internet files folder and the rollover image does not appear in there until after I have rolled over (it does not get preloaded).</p>
<p>I have re-tried the above method and it shows the rollover image without rolling over. It is as though the a:link does nothing. I am going to look into this further.</p>
<p>Does anyone have a link to a working example so I can work out what I am doing wrong and confirm this works?</p>
<p>On a side note - the a:focus does not work for IE but a:active does.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-754</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Thu, 07 Jul 2005 23:40:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-754</guid>
		<description>Well, I don't know if it's correct or not, but you are missing the comma after your first line: 

&lt;code&gt;a{background: url(img_hover.gif); }&lt;/code&gt;,

At least you're missing it if you're trying to use the example from Marko... also, you're missing the a:focus part...</description>
		<content:encoded><![CDATA[<p>Well, I don&#8217;t know if it&#8217;s correct or not, but you are missing the comma after your first line: </p>
<p><code>a{background: url(img_hover.gif); }</code>,</p>
<p>At least you&#8217;re missing it if you&#8217;re trying to use the example from Marko&#8230; also, you&#8217;re missing the a:focus part&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Keogh</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-753</link>
		<dc:creator>Matt Keogh</dc:creator>
		<pubDate>Thu, 07 Jul 2005 16:38:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-753</guid>
		<description>Maybe I am being a bit slow today but I could not get this to work. 

I think it was (either todays slowness) or the order of the links and the a:visited selector.

I tried this: 
&lt;code&gt;a{background: url(img_hover.gif); }
a:link, a:visited { background: url(img_default.gif); }
a:hover { background: url(/img_hover.gif); }&lt;/code&gt;

This loads the background image for all links states, turns it back to the top image for the up state and visited links and then lastly overrides this with hover.</description>
		<content:encoded><![CDATA[<p>Maybe I am being a bit slow today but I could not get this to work. </p>
<p>I think it was (either todays slowness) or the order of the links and the a:visited selector.</p>
<p>I tried this:<br />
<code>a{background: url(img_hover.gif); }<br />
a:link, a:visited { background: url(img_default.gif); }<br />
a:hover { background: url(/img_hover.gif); }</code></p>
<p>This loads the background image for all links states, turns it back to the top image for the up state and visited links and then lastly overrides this with hover.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-737</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Sun, 03 Jul 2005 20:55:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-737</guid>
		<description>Hi! I’m still a bit new to using CSS style sheets. I still don’t understand how to use your tip here, but it sounds like it would be the best thing to avoiding adding more html to my pages to preload the images. I want to use it for my navigation buttons. An example of some of my nav button CSS code can be found at http://www.esbuys.com on any page of the site (all using the same CSS file). How do I incorporate your tip into it? Thank you!</description>
		<content:encoded><![CDATA[<p>Hi! I’m still a bit new to using CSS style sheets. I still don’t understand how to use your tip here, but it sounds like it would be the best thing to avoiding adding more html to my pages to preload the images. I want to use it for my navigation buttons. An example of some of my nav button CSS code can be found at <a href="http://www.esbuys.com" rel="nofollow">http://www.esbuys.com</a> on any page of the site (all using the same CSS file). How do I incorporate your tip into it? Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marko</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-722</link>
		<dc:creator>marko</dc:creator>
		<pubDate>Thu, 30 Jun 2005 14:00:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-722</guid>
		<description>&lt;a href="#comment-712"&gt;@trovster&lt;/a&gt;:
&lt;blockquote&gt;&lt;p&gt;&#8220;I&#8217;m guessing it works how Sage described it, but a confirmation would be nice!&#8221;&lt;/p&gt;&lt;/blockquote&gt;

Consider Sage&#8217;s description confirmed : )</description>
		<content:encoded><![CDATA[<p><a href="#comment-712">@trovster</a>:</p>
<blockquote><p>&#8220;I&#8217;m guessing it works how Sage described it, but a confirmation would be nice!&#8221;</p>
</blockquote>
<p>Consider Sage&#8217;s description confirmed : )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: trovster</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-712</link>
		<dc:creator>trovster</dc:creator>
		<pubDate>Wed, 29 Jun 2005 18:41:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-712</guid>
		<description>Hey, that's pretty nifty. I'm guessing it works how Sage described it, but a confirmation would be nice!  

I'll still stick to the Pixy method for my rollovers. I tend to merge images together anyway, hopefully saving size in the process but definitely saving trips to the server and thus speeding up rendering time.</description>
		<content:encoded><![CDATA[<p>Hey, that&#8217;s pretty nifty. I&#8217;m guessing it works how Sage described it, but a confirmation would be nice!  </p>
<p>I&#8217;ll still stick to the Pixy method for my rollovers. I tend to merge images together anyway, hopefully saving size in the process but definitely saving trips to the server and thus speeding up rendering time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: michael</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-704</link>
		<dc:creator>michael</dc:creator>
		<pubDate>Tue, 28 Jun 2005 22:16:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-704</guid>
		<description>the problem with pixies rollovers is that he uses fixed width (or height) buttons, which don't scale very good (to say the least). But why should your method be better for modem/isdn users ? you have to download all images, be it in one merged (pixie)  or be it in two seperate. i would be suprised if the difference in filesize would be that much. prob. a few bytes. the real advantage of pixies method is that the rollover-state is there when you *need* it. Your method seems to do the job as well, besides it allows us to use *wallpaper*-buttons, that scale much better. so 2:1 for you ;-)

No matter which one you choose,the css will get messed up again with tricks, and workarounds.</description>
		<content:encoded><![CDATA[<p>the problem with pixies rollovers is that he uses fixed width (or height) buttons, which don&#8217;t scale very good (to say the least). But why should your method be better for modem/isdn users ? you have to download all images, be it in one merged (pixie)  or be it in two seperate. i would be suprised if the difference in filesize would be that much. prob. a few bytes. the real advantage of pixies method is that the rollover-state is there when you *need* it. Your method seems to do the job as well, besides it allows us to use *wallpaper*-buttons, that scale much better. so 2:1 for you ;-)</p>
<p>No matter which one you choose,the css will get messed up again with tricks, and workarounds.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leo</title>
		<link>http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-697</link>
		<dc:creator>Leo</dc:creator>
		<pubDate>Tue, 28 Jun 2005 12:22:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/#comment-697</guid>
		<description>Hmph... nice idea. I've also been using the  "position hover images off screen" technique described by Peter, but your suggestion is very simple and cleaner. Nobody aware of any instabilities with this method?

Thanks.</description>
		<content:encoded><![CDATA[<p>Hmph&#8230; nice idea. I&#8217;ve also been using the  &#8220;position hover images off screen&#8221; technique described by Peter, but your suggestion is very simple and cleaner. Nobody aware of any instabilities with this method?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
