<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>thought snippets</title>
	<atom:link href="http://blog.u-blue.com/en/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.u-blue.com</link>
	<description>a little bit of everything</description>
	<lastBuildDate>Sun, 18 Jul 2010 08:06:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Visual Sitemap with HTML+CSS3</title>
		<link>http://blog.u-blue.com/en/2010/03/11/create-visual-sitemap-with-html-css3/</link>
		<comments>http://blog.u-blue.com/en/2010/03/11/create-visual-sitemap-with-html-css3/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 12:52:17 +0000</pubDate>
		<dc:creator>nice</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[webdev]]></category>

		<guid isPermaLink="false">http://blog.u-blue.com/en/?p=259</guid>
		<description><![CDATA[For those who create and using website must be familiar with sitemap page. Usually sitemap gather all links in the site and display them structurally for ease of use. For me, sitemap is always the last to create because it&#8217;s a boring task and sometimes not even in user requirement. And when I actually get ]]></description>
			<content:encoded><![CDATA[<p>For those who create and using website must be familiar with sitemap page. Usually sitemap gather all links in the site and display them structurally for ease of use. For me, sitemap is always the last to create because it&#8217;s a boring task and sometimes not even in user requirement. And when I actually get around to do it, I always use unordered list because it makes most sense but the result isn&#8217;t always pretty.</p>
<p>So here I am with free times in my hands, creating css3 based visual sitemap. I&#8217;m using css3 because to make tree structure in sitemap I have to use css3 pseudo-class selector. But again with new web technology, we have a problem with our beloved browser, ie, so I&#8217;ll use a little js hack for ie only. Here&#8217;s the result.</p>
<p><a href="http://blog.u-blue.com/wp-content/uploads/2010/03/sitemap.png"><img src="http://blog.u-blue.com/wp-content/uploads/2010/03/sitemap-300x157.png" alt="usitemap" title="usitemap" width="300" height="157" class="alignnone size-medium wp-image-261" /></a></p>
<p>I try to use as few images as possible but one thing I hate most is javascript hack. But you don&#8217;t have to use the hack if you&#8217;re ok with slightly distort in ie. Now let&#8217;s look at the code.</p>
<p><span id="more-259"></span></p>
<p>Download the code here -> <a href='http://blog.u-blue.com/wp-content/uploads/2010/03/usitemap.zip'>download usitemap</a></p>
<p>We&#8217;ll be using unordered list in HTML, it can be nested all you like.</p>
<pre class="brush:html">
&lt;ul>
  &lt;li>Home
    &lt;ul>
      &lt;li>Product
          &lt;ul>
            &lt;li>Computer&lt;/li>
            &lt;li>Printer&lt;/li>
            &lt;li>Scanner&lt;/li>
          &lt;/ul>
      &lt;/li>
      &lt;li>Client&lt;/li>
      &lt;li>About&lt;/li>
      &lt;li>Contact&lt;/li>
    &lt;/ul>
  &lt;/li>
&lt;/ul>
</pre>
<p>And in css we&#8217;ll use css3 and 4 images:</p>
<pre class="brush:css">
/*change color*/
#usitemap a, #usitemap a:visited{color:#4D6180;background: #B5C7E3;border: 1px solid #4D6180;}
#usitemap a:hover, #usitemap a:active{background: #90ABD5;}

/*sitemap core*/
#usitemap *{margin: 0;padding: 0;}
#usitemap ul li{list-style: none;position: relative;top: 0px;width: 120px;padding: 10px 40px 0 0;background-image: url(fork_mid.gif);background-position: top left;background-repeat: no-repeat;}
#usitemap ul li:last-child{ background-image: url(fork_last.gif); }
#usitemap ul li:first-child{ background-image: url(fork.gif); }
#usitemap ul li:only-child{ background-image: url(dotted.gif); background-repeat: repeat-x;}
#usitemap ul li ul li{left: 172px;top: 0px;font-size: .9em;}
#usitemap ul li ul{margin-top: -42px}
#usitemap ul li a{text-align: center;display: block;line-height: 28px;-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;margin: 0 0px 0 50px;width: 120px;text-decoration: none;}
</pre>
<p>Last but not least,  javascript hack for ie using <a href="http://www.keithclark.co.uk/labs/ie-css3/">ie-css3</a> with <a href="http://jquery.com/">jquery</a>:</p>
<pre class="brush:html">
&lt;script type="text/javascript" src="js/jquery-1.3.1.min.js">&lt;/script>
&lt;!--[if (gte IE 5.5)&#038;(lte IE 8)]>
&lt;script type="text/javascript" src="ie-css3.js">&lt;/script>
&lt;![endif]-->
</pre>
<p>that&#8217;s it, easy visual sitemap with css3 and html!</p>
<p>Download the code here -> <a href='http://blog.u-blue.com/wp-content/uploads/2010/03/usitemap.zip'>download usitemap</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.u-blue.com/en/2010/03/11/create-visual-sitemap-with-html-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visible stat from Google Analytics</title>
		<link>http://blog.u-blue.com/en/2010/02/10/visible-stat-with-google-analytics/</link>
		<comments>http://blog.u-blue.com/en/2010/02/10/visible-stat-with-google-analytics/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 11:15:48 +0000</pubDate>
		<dc:creator>nice</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[webdev]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[google analytic]]></category>

		<guid isPermaLink="false">http://blog.u-blue.com/en/?p=213</guid>
		<description><![CDATA[From my old blog Extract data from google analytic with PHP makes me wanna write another script to show number of pageviews on the web for all the world to see. It&#8217;s actually an old school &#8220;web counter&#8221; as we know it and since normally you can&#8217;t just extract pageviews data from google analytics to display ]]></description>
			<content:encoded><![CDATA[<p>From my old blog <a href="http://blog.u-blue.com/en/2010/02/09/google-analytic-api-extract-data-php/">Extract data from google analytic with PHP</a> makes me wanna write another script to show number of pageviews on the web for all the world to see. It&#8217;s actually an old school &#8220;web counter&#8221; as we know it and since normally you can&#8217;t just extract pageviews data from google analytics to display on your website I have to make use of my old GAAPI class to extract data to create the counter, see example below.</p>
<div id="attachment_214" class="wp-caption alignnone" style="width: 122px"><a href="http://blog.u-blue.com/wp-content/uploads/2010/02/Screen-shot-2010-02-10-at-5.56.11-PM.png"><img class="size-full wp-image-214" title="Google Analytic Visible Stat" src="http://blog.u-blue.com/wp-content/uploads/2010/02/Screen-shot-2010-02-10-at-5.56.11-PM.png" alt="" width="112" height="41" /></a><p class="wp-caption-text">GA Visible Stat</p></div>
<p><span id="more-213"></span></p>
<p><strong>How to use?</strong></p>
<ol>
<li>Load <strong> <a href="http://blog.u-blue.com/wp-content/uploads/2010/02/GAAPI1.zip">GAAPI</a>  </strong> from my old blog though we&#8217;ll use only gaapi.class.php here.</li>
<li>Construct gaapi class and call method All Time Page Views (total number of page views)
<pre class="brush:php">

include_once('gaapi.class.php');
$ga=new gaApi('google username','password','ga:site id');
$allTimeSummery=$ga->getAllTimeSummery();</pre>
</li>
<li>Show the counter using HTML with CSS<br />
CSS:</p>
<pre class="brush:css">
#vGA{
	width: 100px;
	position: relative;
	font-size: 9px;
	font-family: Verdana, Verdana, Geneva, sans-serif;
	padding-bottom: 15px;
	background: url(poweredBy.gif) no-repeat bottom left;
}
#vGA div{
	text-align: right;
	border: 2px solid #4f6db0;
	color: #555;
	line-height: 15px;
}
#vGA #vGALabel{
	background: #4f6db0;
	text-align: center;
	color: white;
	float: right;
	padding: 0 0 0 2px;
	margin: 0 0 0 2px;
}</pre>
<p>HTML:</p>
<pre class="brush:html">
<div id="vGA">
<div>&lt;?= $allTimeSummery['ga:pageviews'] ?>
       <span id="vGALabel">Views</span></div>
</div>
</pre>
</li>
<li>Save this Powered By Google image into the same folder as others files
<p><div id="attachment_215" class="wp-caption alignright" style="width: 97px"><a href="http://blog.u-blue.com/wp-content/uploads/2010/02/poweredBy.gif"><img src="http://blog.u-blue.com/wp-content/uploads/2010/02/poweredBy.gif" alt="" title="Powered By Google Analytic" width="87" height="15" class="size-full wp-image-215" /></a><p class="wp-caption-text">Powered By</p></div></li>
</ol>
<p>And now we&#8217;ve got easy Visible Stat from Google Analytic. If you wish to show other data such as Unique Visits you can do so by follow instruction from my old blog <a href="http://blog.u-blue.com/en/2010/02/09/google-analytic-api-extract-data-php/">Extract data from google analytic with PHP</a> </p>
<p><strong>Put it all together</strong></p>
<pre class="brush:html">
&lt;html>
&lt;head>
&lt;style type="text/css">
#vGA{
	width: 100px;
	position: relative;
	font-size: 9px;
	font-family: Verdana, Verdana, Geneva, sans-serif;
	padding-bottom: 15px;
	background: url(poweredBy.gif) no-repeat bottom left;
}
#vGA div{
	text-align: right;
	border: 2px solid #4f6db0;
	color: #555;
	line-height: 15px;
}
#vGA #vGALabel{
	background: #4f6db0;
	text-align: center;
	color: white;
	float: right;
	padding: 0 0 0 2px;
	margin: 0 0 0 2px;
}
&lt;/style>
&lt;/head>
&lt;body>
&lt;?
include_once('gaapi.class.php');
$ga=new gaApi('google username','password','ga:site id');
$allTimeSummery=$ga->getAllTimeSummery();
?>
<div id="vGA">
<div>&lt;?= $allTimeSummery['ga:pageviews'] ?>
       <span id="vGALabel">Views</span></div>
</div>

&lt;/body>
&lt;/html></pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.u-blue.com/en/2010/02/10/visible-stat-with-google-analytics/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Extract data from google analytic with PHP</title>
		<link>http://blog.u-blue.com/en/2010/02/09/google-analytic-api-extract-data-php/</link>
		<comments>http://blog.u-blue.com/en/2010/02/09/google-analytic-api-extract-data-php/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 20:30:41 +0000</pubDate>
		<dc:creator>nice</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[webdev]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[google analytic]]></category>

		<guid isPermaLink="false">http://blog.u-blue.com/en/?p=189</guid>
		<description><![CDATA[My PHP class to extract data from Google Analytics API to show on your own website. Using: PHP cURL to connect to Google Analytics Data Extract API PHP DOMDocument to parse XML Google Graph API to show analytic data Screenshot: How to use? Download full source code here -&#62; GAAPI Construct and use the class Include ]]></description>
			<content:encoded><![CDATA[<p>My PHP class to extract data from Google Analytics API to show on your own website.<br />
Using:</p>
<ul>
<li>PHP</li>
<li>cURL to connect to Google Analytics Data Extract API</li>
<li>PHP DOMDocument to parse XML</li>
<li>Google Graph API to show analytic data</li>
</ul>
<p>Screenshot:</p>
<div id="attachment_190" class="wp-caption alignnone" style="width: 410px"><a href="http://blog.u-blue.com/wp-content/uploads/2010/02/Screen-shot-2010-02-10-at-2.52.53-AM.png"><img class="size-full wp-image-190 " title="Google Analytic Data Export API with PHP" src="http://blog.u-blue.com/wp-content/uploads/2010/02/Screen-shot-2010-02-10-at-2.52.53-AM.png" alt="" width="400" /></a><p class="wp-caption-text">Google Analytic Data Export API with PHP</p></div>
<p><span id="more-189"></span></p>
<p><strong>How to use?</strong></p>
<p><strong>Download full source code here -&gt; <a href="http://blog.u-blue.com/wp-content/uploads/2010/02/GAAPI1.zip">GAAPI</a></strong></p>
<p><strong>Construct and use the class</strong><br />
Include class file and call to construct with params username, password and site id(from url in google analytic account &#8220;id=xxxxxxxx&#8221;)</p>
<pre class="brush:php">include_once('gaapi.class.php');
$ga=new gaApi('google username','google password','ga:site id');
//e.g. ('myname@gmail.com','myPassword','ga:1234567');</pre>
<p>Site ID in Google Analytic URL</p>
<div id="attachment_202" class="wp-caption alignnone" style="width: 460px"><a href="http://blog.u-blue.com/wp-content/uploads/2010/02/analyticd.jpg"><img class="size-full wp-image-202 " title="analyticd" src="http://blog.u-blue.com/wp-content/uploads/2010/02/analyticd.jpg" alt="" width="450" height="55" /></a><p class="wp-caption-text">Analytic ID</p></div>
<p><strong>Generate Report</strong><br />
This require knowledge of Dimension and Metric from <a href="http://code.google.com/intl/en/apis/analytics/docs/gdata/gdataReferenceDimensionsMetrics.html">Google Analytic Data Extract API</a>. Basically it is to combine between Dimensions and Metrics to generate reports through method genReport(array). For examples.</p>
<pre class="brush:php">$params = array ('metrics' 		=&gt; 'ga:visits',
				'dimensions'	=&gt; 'ga:source',
				'start-date' 	=&gt; '2010-01-01',
				'end-date' 		=&gt; '2010-02-09',
				'max-results' 	=&gt; '5',
				'filter'		=&gt; 'ga:source != (direct)',
				'sort'			=&gt; '-ga:visits');
$result=$ga-&gt;genReport($params);
print_r($result);</pre>
<p>The result will be collection of array like this.</p>
<pre class="brush:php">Array
(
    [0] =&gt; Array
        (
            [ga:source] =&gt; google
            [ga:visits] =&gt; 5029
        )
    [1] =&gt; Array
        (
            [ga:source] =&gt; xxxxxxx.com
            [ga:visits] =&gt; 162
        )
    [2] =&gt; Array
        (
            [ga:source] =&gt; search
            [ga:visits] =&gt; 49
        )
)</pre>
<p><strong>Also there&#8217;s some pre-made method of frequency use statistic in my class such as:</strong></p>
<pre class="brush:php">$now=date("Y-m-d");
$lastmonth=date('Y-m-d', strtotime('-30 days'));

//Summery: visitors, unique visit, pageview, time on site, new visits, bounce rates
$summery=$ga-&gt;getSummery($lastmonth,$now);

//All time summery: visitors, page views
$allTimeSummery=$ga-&gt;getAllTimeSummery();

//Last 10 days visitors (for graph)
$visits=$ga-&gt;getVisits($lastmonth,$now,10);

//Top 10 search engine keywords
$topKeywords=$ga-&gt;getTopKeyword($lastmonth,$now,10);

//Top 10 visitor countries
$topCountries=$ga-&gt;getTopCountry($lastmonth,$now,10);

//Top 10 page views
$topPages=$ga-&gt;getTopPage($lastmonth,$now,10);

//Top 10 referrer websites
$topReferrer=$ga-&gt;getTopReferrer($lastmonth,$now,10);

//Top 10 visitor browsers
$topBrowsers=$ga-&gt;getTopBrowser($lastmonth,$now,10);

//Top 10 visitor operating systems
$topOs=$ga-&gt;getTopOs($lastmonth,$now,10);</pre>
<p>Each method generate collection of array with dimension and metric name as key</p>
<p>Download the code here -&gt; <a href="http://blog.u-blue.com/wp-content/uploads/2010/02/GAAPI1.zip">GAAPI</a></p>
<p>Please let me know if you find any bugs!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.u-blue.com/en/2010/02/09/google-analytic-api-extract-data-php/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>from table to div</title>
		<link>http://blog.u-blue.com/en/2009/05/11/from-table-to-div/</link>
		<comments>http://blog.u-blue.com/en/2009/05/11/from-table-to-div/#comments</comments>
		<pubDate>Mon, 11 May 2009 07:34:40 +0000</pubDate>
		<dc:creator>nice</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[webdev]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://blog.u-blue.com/en/?p=96</guid>
		<description><![CDATA[An easy way to change your html layout from table to css/div for those who still using &#8220;old school html table layout&#8221; First, let&#8217;s look at the table: HTML code This is Header Main Menu-Menu1 Content goes here!This is content! Looks simple and familiar enough, but is it the best? How about we change it ]]></description>
			<content:encoded><![CDATA[<p>An easy way to change your html layout from table to css/div for those who still using &#8220;old school html table layout&#8221;</p>
<p>First, let&#8217;s look at the table:<br />
<div id="attachment_109" class="wp-caption alignnone" style="width: 379px"><a href="http://blog.u-blue.com/wp-content/uploads/2010/01/table1.png"><img src="http://blog.u-blue.com/wp-content/uploads/2010/01/table1.png" alt="" title="table" width="369" height="83" class="size-full wp-image-109" /></a><p class="wp-caption-text">Table Layout</p></div><br />
HTML code</p>
<pre class="brush:xml">
<table width="350" align="center">
<tbody>
<tr>
<td colspan="2" align="center"  bgcolor="#eeeeee">
This is Header
</td>
</tr>
<tr>
<td width="100" align="left" valign="top"  bgcolor="#999999">
Main Menu<br/>-Menu1
</td>
<td align="left" valign="top"  bgcolor="#cccccc">
Content goes here!<br/>This is content!
</td>
</tr>
</tbody>
</table>
</pre>
<p>Looks simple and familiar enough, but is it the best? How about we change it into css/div layout.</p>
<p><span id="more-96"></span><br />
The result:<br />
<div id="attachment_110" class="wp-caption alignnone" style="width: 380px"><a href="http://blog.u-blue.com/wp-content/uploads/2010/01/div.png"><img src="http://blog.u-blue.com/wp-content/uploads/2010/01/div.png" alt="" title="div" width="370" height="70" class="size-full wp-image-110" /></a><p class="wp-caption-text">Css Div Layout</p></div><br />
It looks the same as table, now let&#8217;s see the code.</p>
<p>HTML:</p>
<pre class="brush:xml">
<div id="container">
<div id="header">This is Header</div>
<div id="menu">Main Menu<br/>-Menu1</div>
<div id="content">Content goes here!<br/>This is content!</div>
</div>
</pre>
<p>CSS:</p>
<pre class="brush:css">
div#container{
	width:350px;
	margin:0 auto;
	background:#cccccc;
}
div#header{
	text-align:center;
	background: #eeeeee;
}
div#menu{
	width:100px;
	float:left;
	background: #999999;
}
div#content{
	width:250px;
	float:left;
	background: #cccccc;
}
</pre>
<p>Not as painful as you think? Now we combine them together.</p>
<ol>
<li>Put css code under style tag in HTML head
<pre class="brush:xml">
<style type="text/css">...</style>
</pre>
</li>
<li> Separate css code into .css file and create a like to it using tag
<pre class="brush:xml">
<link rel='stylesheet' href='file.css' type='text/css' media='all' /></pre>
</li>
</ol>
<p>That&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.u-blue.com/en/2009/05/11/from-table-to-div/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ie6.png !</title>
		<link>http://blog.u-blue.com/en/2008/12/08/ie6-png/</link>
		<comments>http://blog.u-blue.com/en/2008/12/08/ie6-png/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 16:16:15 +0000</pubDate>
		<dc:creator>nice</dc:creator>
				<category><![CDATA[ie6]]></category>
		<category><![CDATA[webdev]]></category>

		<guid isPermaLink="false">http://u-blue.com/blog/?p=74</guid>
		<description><![CDATA[.png files format is essential in today&#8217;s website builder mainly because its give us a real transparency which is far better than .gif Arise our problem. IE 6. Same old pal who loves to give us headache developing website but we can&#8217;t just forget it because number of ie6 users is still significant, at least ]]></description>
			<content:encoded><![CDATA[<p>.png files format is essential in today&#8217;s website builder mainly because its give us a real transparency which is far better than .gif</p>
<p>Arise our problem. IE 6. Same old pal who loves to give us headache developing website but we can&#8217;t just forget it because number of ie6 users is still significant, at least for my sites.</p>
<p>The problem with ie6 this time is that it cannot display .png transparency properly. For those who don&#8217;t know about this problem please see example below.</p>
<div id="attachment_78" class="wp-caption alignnone" style="width: 208px"><a href="http://u-blue.com/blog/wp-content/uploads/2010/01/ie.png"><img class="size-full wp-image-78 " title="ie" src="http://u-blue.com/blog/wp-content/uploads/2010/01/ie.png" alt="" width="198" height="202" /></a><p class="wp-caption-text">Original PNG File</p></div>
<div class="mceTemp" style="text-align: center;">
<div id="attachment_86" class="wp-caption alignleft" style="width: 235px"><a href="http://u-blue.com/blog/wp-content/uploads/2010/01/ie7.png"><img class="size-full wp-image-86" title="ie7" src="http://u-blue.com/blog/wp-content/uploads/2010/01/ie7.png" alt="" width="225" height="234" /></a><p class="wp-caption-text">IE7</p></div>
</div>
<div id="attachment_84" class="wp-caption alignleft" style="width: 237px"><a href="http://u-blue.com/blog/wp-content/uploads/2010/01/ie6-11.png"><img class="size-full wp-image-84" title="ie6-1" src="http://u-blue.com/blog/wp-content/uploads/2010/01/ie6-11.png" alt="" width="227" height="233" /></a><p class="wp-caption-text">IE6 !!!</p></div>
<p style="clear: both;">
<p style="clear: both;">As we can see, ie6 image transparency is not really transplant.</p>
<p style="clear: both;"><span id="more-74"></span><strong>IE PNG FIX</strong></p>
<p style="clear: both;">The code we&#8217;ll use to fix this problem is iepngfix from <a href="http://www.twinhelix.com/css/iepngfix/">Twin Helix: IE PNG Fix</a>.</p>
<p style="clear: both;">Here&#8217;s how we use it:</p>
<ol>
<li>Download iepngfix.zip at original website above.</li>
<li>Extract then put iepngfix.htc and blank.gif into any folder you want.</li>
<li>Add style into your html or css file
<pre class="brush:xml">
&lt;!--[if lte IE 6]>

&lt;style type="text/css">
img, div, input { behavior: url("iepngfix.htc") }
&lt;/style>&lt;![endif]--></pre>
</li>
</ol>
<p>Save you files and refresh the browser ie6</p>
<div id="attachment_89" class="wp-caption alignnone" style="width: 239px"><a href="http://u-blue.com/blog/wp-content/uploads/2010/01/ie6-after-ie.png"><img src="http://u-blue.com/blog/wp-content/uploads/2010/01/ie6-after-ie.png" alt="" title="ie6-after-ie" width="229" height="239" class="size-full wp-image-89" /></a><p class="wp-caption-text">IE6 Works!</p></div>
<p>Note: If iepngfix.htc and blank.gif is not in the same location(folder) you have to open file iepngfix.htc using notepad and change path of &#8220;IEPNGFix.blankImg = thisFolder + &#8216;blank.gif&#8217;; &lt;&#8211;to absolute path e.g. IEPNGFix.blankImg =&#8217;/images/blank.gif&#8217;;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.u-blue.com/en/2008/12/08/ie6-png/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
