<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/favorites/shellydennison</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Mon, 01 Dec 2008 17:32:29 GMT</pubDate>
<item>
<title>(JavaScript) jquery, firefox mac hack - shellydennison</title>
<link>http://snipplr.com/view/6581/jquery-firefox-mac-hack/</link>
<description><![CDATA[ <p>Links brighten or fade when things animate in ff mac. use this fix - first line of jquery.</p> ]]></description>
<pubDate>Wed, 04 Jun 2008 17:37:57 GMT</pubDate>
<guid>http://snipplr.com/view/6581/jquery-firefox-mac-hack/</guid>
</item>
<item>
<title>(JavaScript) Jquery add class .last - shellydennison</title>
<link>http://snipplr.com/view/6578/jquery-add-class-last/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 04 Jun 2008 14:12:53 GMT</pubDate>
<guid>http://snipplr.com/view/6578/jquery-add-class-last/</guid>
</item>
<item>
<title>(CSS) Toolbox CSS - Layout, Print and Typographic Tools - shellydennison</title>
<link>http://snipplr.com/view/6144/toolbox-css--layout-print-and-typographic-tools/</link>
<description><![CDATA[ <p>Toolbox CSS is styling information that has nothing uniquely to do with any particular website. These are a collection of common styles that can be useful on any web project. How many times have you written a class for clearing a float? Too many, is my guess. The idea with Toolbox CSS is to include a separate stylesheet for these “utility” styles.</p> ]]></description>
<pubDate>Wed, 07 May 2008 13:01:43 GMT</pubDate>
<guid>http://snipplr.com/view/6144/toolbox-css--layout-print-and-typographic-tools/</guid>
</item>
<item>
<title>(R) North America Pull Down - shellydennison</title>
<link>http://snipplr.com/view/4812/north-america-pull-down/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 28 Jan 2008 17:08:21 GMT</pubDate>
<guid>http://snipplr.com/view/4812/north-america-pull-down/</guid>
</item>
<item>
<title>(HTML) Background Image PNG Fix - shellydennison</title>
<link>http://snipplr.com/view/4629/background-image-png-fix/</link>
<description><![CDATA[ <p>Use this for background images. Put it in conditional comments in the head of your doc.</p> ]]></description>
<pubDate>Thu, 17 Jan 2008 17:12:56 GMT</pubDate>
<guid>http://snipplr.com/view/4629/background-image-png-fix/</guid>
</item>
<item>
<title>(CSS) Pagination  Links - shellydennison</title>
<link>http://snipplr.com/view/4599/pagination--links/</link>
<description><![CDATA[ <p>This code is based on  enlaces de paginacin posted by Web Design</p> ]]></description>
<pubDate>Tue, 15 Jan 2008 11:23:16 GMT</pubDate>
<guid>http://snipplr.com/view/4599/pagination--links/</guid>
</item>
<item>
<title>(CSS) clearfix:after - shellydennison</title>
<link>http://snipplr.com/view/3045/clearfixafter/</link>
<description><![CDATA[ <p>Eliminates the need for extra xhtml elements to resolve height inheritance when floating elements with CSS.</p> ]]></description>
<pubDate>Tue, 26 Jun 2007 12:51:26 GMT</pubDate>
<guid>http://snipplr.com/view/3045/clearfixafter/</guid>
</item>
<item>
<title>(CSS) Transparent PNG Fix for IE 5.5 &amp;amp; 6 - shellydennison</title>
<link>http://snipplr.com/view/2243/transparent-png-fix-for-ie-55--6/</link>
<description><![CDATA[ <p>This is an excellent solution for fixing IE 6's inability to display transparent PNGs correctly.

Step 1: Include the following conditional comment the HEAD area of your document. You will need to update the CSS selector and also the path to whereever you put the .htc file.

&amp;lt;!--[if lte IE 6]&amp;gt;
&amp;lt;style type="text/css"&amp;gt;
&amp;#160;&amp;#160;img { behavior: url(/css/iepngfix.htc) }
&amp;lt;/style&amp;gt;
&amp;lt;![endif]--&amp;gt;

Step 2: Create a transparent GIF that's 1x1 and save it as blank.gif in your images folder.

Step 3. Copy the source below and save it in a file called iepngfix.htc and place it in your CSS folder. Note, you may need to update the images folder to match the folder you're using on your site.

That's it. Once you have everything in place and assuming everything is referenced correclty, PNG transparency will work in IE 6.</p> ]]></description>
<pubDate>Wed, 07 Mar 2007 12:10:25 GMT</pubDate>
<guid>http://snipplr.com/view/2243/transparent-png-fix-for-ie-55--6/</guid>
</item>
<item>
<title>(CSS) Use Conditional Comments to Subjugate IE - shellydennison</title>
<link>http://snipplr.com/view/2125/use-conditional-comments-to-subjugate-ie/</link>
<description><![CDATA[ <p>Over 90% of the bugs front-end developers have to resolve deal with the various versions of Internet Explorer and their varying support for standards.  So instead of having to resort to CSS hacks, why not just keep 'em separated: use Microsoft's propriety conditional comments to insert css files that only IE will see.  The example below illustrates how to serve one stylesheet to IE5, IE5.5 and IE6 and another stylesheet for IE7.</p> ]]></description>
<pubDate>Sun, 04 Feb 2007 20:32:42 GMT</pubDate>
<guid>http://snipplr.com/view/2125/use-conditional-comments-to-subjugate-ie/</guid>
</item>
<item>
<title>(CSS) min-height for IE (and all other browsers) - shellydennison</title>
<link>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</link>
<description><![CDATA[ <p>Since min-height doesn't work in IE, this code makes up for IE's shortcomings. The first part of the code is the correct code that works in Firefox and Safari. The second part of the code is for IE. Internet Explorer will ignore min-height and is just given a height of 8em. The IE bug automatically expands the container to fit the extra text.</p> ]]></description>
<pubDate>Wed, 31 Dec 1969 19:00:00 GMT</pubDate>
<guid>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</guid>
</item>
</channel>
</rss>