<?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>answersy.com Blog &#187; HTML/CSS/JS/AJAX</title>
	<atom:link href="http://answersy.com/zchen/index.php/category/it-related/htmljavascriptcss/feed/" rel="self" type="application/rss+xml" />
	<link>http://answersy.com/zchen</link>
	<description>Got questions? Got answers!</description>
	<lastBuildDate>Thu, 20 Oct 2011 04:28:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Select and search for Yahoo and Google</title>
		<link>http://answersy.com/zchen/2007/12/12/select-and-search-for-yahoo-and-google/</link>
		<comments>http://answersy.com/zchen/2007/12/12/select-and-search-for-yahoo-and-google/#comments</comments>
		<pubDate>Wed, 12 Dec 2007 06:03:25 +0000</pubDate>
		<dc:creator>zchen</dc:creator>
				<category><![CDATA[HTML/CSS/JS/AJAX]]></category>
		<category><![CDATA[IT Related]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://answersy.com/zchen/2007/12/12/select-and-search-for-yahoo-and-google/</guid>
		<description><![CDATA[Bookmark the following links: Select and Search For Google, Select and Search For Yahoo. Now, on any webpage, highlight some text, and click on the bookmark item. It will bring you to Google / Yahoo search with query as the text you just selected. If you are already on Yahoo search, click the Google link, [...]]]></description>
			<content:encoded><![CDATA[<p>Bookmark the following links: <a href="javascript:(function(){var s=document.createElement('script');s.setAttribute('type','text/javascript');s.setAttribute('src','http://www.answersy.com/js/searchyahoo.user.js');document.getElementsByTagName('head')[0].appendChild(s);})();">Select and Search For Google</a>, <a href="javascript:(function(){var s=document.createElement('script');s.setAttribute('type','text/javascript');s.setAttribute('src','http://www.answersy.com/js/searchyahoo.user.js');document.getElementsByTagName('head')[0].appendChild(s);})();">Select  and Search For Yahoo</a>. Now, on any webpage, highlight some text, and click on the bookmark item. It will bring you to Google / Yahoo search with query as the text you just selected.</p>
<p>If you are already on Yahoo search, click the Google link, it will bring you the google search result with the same term, vice verse.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fanswersy.com%2Fzchen%2F2007%2F12%2F12%2Fselect-and-search-for-yahoo-and-google%2F';
  addthis_title  = 'Select+and+search+for+Yahoo+and+Google';
  addthis_pub    = 'zchen050815';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://answersy.com/zchen/2007/12/12/select-and-search-for-yahoo-and-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Script Utf8 Encoding</title>
		<link>http://answersy.com/zchen/2007/11/27/java-script-utf8-encoding/</link>
		<comments>http://answersy.com/zchen/2007/11/27/java-script-utf8-encoding/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 06:44:14 +0000</pubDate>
		<dc:creator>zchen</dc:creator>
				<category><![CDATA[HTML/CSS/JS/AJAX]]></category>
		<category><![CDATA[IT Related]]></category>

		<guid isPermaLink="false">http://answersy.com/zchen/2007/11/27/java-script-utf8-encoding/</guid>
		<description><![CDATA[This should work on pages with most of the different encodings :-) window.Utf8Encode = function(string) { &#160; string = string.replace(/\\r\\n/g,&#34;n&#34;); &#160; var utftext = &#34;&#34;; &#160; for (var n = 0; n &#60; string.length; n++) { &#160; var c = string.charCodeAt(n); &#160; if (c &#60; 128) { &#160; utftext += String.fromCharCode(c); &#160; } &#160; else [...]]]></description>
			<content:encoded><![CDATA[<p>This should work on pages with most of the different encodings :-)</p>
<pre>window.Utf8Encode = function(string) {
&nbsp;
string = string.replace(/\\r\\n/g,&quot;n&quot;);
&nbsp;
var utftext = &quot;&quot;;
&nbsp;
for (var n = 0; n &lt; string.length; n++) {
&nbsp;
var c = string.charCodeAt(n);
&nbsp;
if (c &lt; 128) {
&nbsp;
utftext += String.fromCharCode(c);
&nbsp;
}
&nbsp;
else if((c &gt; 127) &amp;&amp; (c &lt; 2048)) {
&nbsp;
utftext += String.fromCharCode((c &gt;&gt; 6) | 192);
&nbsp;
utftext += String.fromCharCode((c &amp; 63) | 128);
&nbsp;
}
&nbsp;
else {
&nbsp;
utftext += String.fromCharCode((c &gt;&gt; 12) | 224);
&nbsp;
utftext += String.fromCharCode(((c &gt;&gt; 6) &amp; 63) | 128);
&nbsp;
utftext += String.fromCharCode((c &amp; 63) | 128);
&nbsp;
}
&nbsp;
}
&nbsp;
return utftext;
&nbsp;
}
&lt;pre /&gt;</pre>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fanswersy.com%2Fzchen%2F2007%2F11%2F27%2Fjava-script-utf8-encoding%2F';
  addthis_title  = 'Java+Script+Utf8+Encoding';
  addthis_pub    = 'zchen050815';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://answersy.com/zchen/2007/11/27/java-script-utf8-encoding/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Use DIV to Achieve Left and Right Align in a Line?</title>
		<link>http://answersy.com/zchen/2007/11/02/how-to-use-div-to-achieve-left-and-right-align-in-a-line/</link>
		<comments>http://answersy.com/zchen/2007/11/02/how-to-use-div-to-achieve-left-and-right-align-in-a-line/#comments</comments>
		<pubDate>Fri, 02 Nov 2007 03:26:48 +0000</pubDate>
		<dc:creator>zchen</dc:creator>
				<category><![CDATA[HTML/CSS/JS/AJAX]]></category>
		<category><![CDATA[IT Related]]></category>

		<guid isPermaLink="false">http://answersy.com/zchen/2007/11/02/how-to-use-div-to-achieve-left-and-right-align-in-a-line/</guid>
		<description><![CDATA[Left Right And the code is: &#160; &#60;div style=&#34;border: 1px solid #ff0000; width: 580px&#34;&#62; &#60;div style=&#34;border: 1px solid #00ff00; float: left&#34;&#62;Left&#60;/div&#62; &#60;div style=&#34;border: 1px solid #0000ff; float: right; text-align: right&#34;&#62;Right&#60;/div&#62; &#60;/div&#62; &#160; It seems Firefox handles nested DIV differently from IE. FF has the height of the outer DIV as 0 in this case. For [...]]]></description>
			<content:encoded><![CDATA[<div id="usediv" style="border: 1px solid #ff0000; width: 580px">
<div style="border: 1px solid #00ff00; float: left">Left</div>
<div style="border: 1px solid #0000ff; float: right; text-align: right">Right</div>
</div>
<div style="margin: 5px; clear: both">And the code is:</div>
<pre>&nbsp;
&lt;div style=&quot;border: 1px solid #ff0000; width: 580px&quot;&gt;
&lt;div style=&quot;border: 1px solid #00ff00; float: left&quot;&gt;Left&lt;/div&gt;
&lt;div style=&quot;border: 1px solid #0000ff; float: right; text-align: right&quot;&gt;Right&lt;/div&gt;
&lt;/div&gt;
&nbsp;</pre>
<div style="margin: 5px; clear: both">It seems Firefox handles nested DIV differently from IE. FF has the height of the outer DIV as 0 in this case.</div>
<div style="margin: 5px; clear: both"><img id="image108" alt="div_ie_ff.gif" src="http://answersy.com/zchen/wp-content/uploads/2007/11/div_ie_ff.gif" /></div>
<p>For a more detailed demo on CSS layout, follow <a title="CSS Layout Demos" href="http://answersy.com/ajax/divLayout.html">this link</a>.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fanswersy.com%2Fzchen%2F2007%2F11%2F02%2Fhow-to-use-div-to-achieve-left-and-right-align-in-a-line%2F';
  addthis_title  = 'How+to+Use+DIV+to+Achieve+Left+and+Right+Align+in+a+Line%3F';
  addthis_pub    = 'zchen050815';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://answersy.com/zchen/2007/11/02/how-to-use-div-to-achieve-left-and-right-align-in-a-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add Code Highlight to WordPress?</title>
		<link>http://answersy.com/zchen/2007/10/31/how-to-add-code-highlight-to-wordpress/</link>
		<comments>http://answersy.com/zchen/2007/10/31/how-to-add-code-highlight-to-wordpress/#comments</comments>
		<pubDate>Wed, 31 Oct 2007 18:38:46 +0000</pubDate>
		<dc:creator>zchen</dc:creator>
				<category><![CDATA[HTML/CSS/JS/AJAX]]></category>
		<category><![CDATA[IT Related]]></category>

		<guid isPermaLink="false">http://answersy.com/zchen/2007/10/31/how-to-add-code-highlight-to-wordpress/</guid>
		<description><![CDATA[So far, Lee's Code Highlighter is the best I found. Download it at http://ideathinking.com/wiki/index.php/WordPress:CodeHighlighterPlugin To install the plugin: Unzip the plugin archive Upload the directory to the /wp-content/plugins/ directory Activate the plugin through the 'Plugins' menu in WordPress It is useful to add a border on the code section. To achieve so, in your themes [...]]]></description>
			<content:encoded><![CDATA[<p>So far,  Lee's Code Highlighter is the best I found. Download it at <a href="http://ideathinking.com/wiki/index.php/WordPress:CodeHighlighterPlugin">http://ideathinking.com/wiki/index.php/WordPress:CodeHighlighterPlugin</a></p>
<p>To install the plugin:</p>
<ol>
<li>Unzip the plugin archive</li>
<li>Upload the directory to the <strong>/wp-content/plugins/</strong> directory</li>
<li>Activate the plugin through the 'Plugins' menu in WordPress</li>
</ol>
<p>It is useful to add a border on the code section. To achieve so, in your themes folder <strong>/wp-content/themes/yourTheme/</strong></p>
<p>Add the following to your <strong>style.css</strong></p>
<pre class="css">pre <span style="color: #66cc66;">&#123;</span>
<span style="color: #000000; font-weight: bold;">font-size</span>: <span style="color: #933;">12px</span>;
<span style="color: #000000; font-weight: bold;">background</span>:<span style="color: #cc00cc;">#f8f8f8</span>;
padding<span style="color: #3333ff;">:<span style="color: #933;">4px</span></span>;
<span style="color: #000000; font-weight: bold;">border</span>:<span style="color: #cc00cc;">#c96</span> <span style="color: #933;">1px</span> <span style="color: #993333;">dotted</span>;
<span style="color: #66cc66;">&#125;</span></pre>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fanswersy.com%2Fzchen%2F2007%2F10%2F31%2Fhow-to-add-code-highlight-to-wordpress%2F';
  addthis_title  = 'How+to+Add+Code+Highlight+to+WordPress%3F';
  addthis_pub    = 'zchen050815';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://answersy.com/zchen/2007/10/31/how-to-add-code-highlight-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Demo: Web Search Widget for Y!CN</title>
		<link>http://answersy.com/zchen/2007/10/29/demo-web-search-widget-for-ycn/</link>
		<comments>http://answersy.com/zchen/2007/10/29/demo-web-search-widget-for-ycn/#comments</comments>
		<pubDate>Mon, 29 Oct 2007 20:26:49 +0000</pubDate>
		<dc:creator>zchen</dc:creator>
				<category><![CDATA[HTML/CSS/JS/AJAX]]></category>
		<category><![CDATA[IT Related]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://answersy.com/zchen/2007/10/29/demo-web-search-widget-for-ycn/</guid>
		<description><![CDATA[The demo can be found at http://answersy.com/ajax/widgetYCN.html. All you need is to copy the javascript code in the textarea and paste it on your page. This version is implemented using iframe. I have a demo to use Ajax, but it will fail on other sites because XMLHttpRequest or ActiveXObject can only request data from the [...]]]></description>
			<content:encoded><![CDATA[<p>The demo can be found at <a title="Demo: Web Search Widget for Y!CN" href="http://answersy.com/ajax/widgetYCN.html">http://answersy.com/ajax/widgetYCN.html</a><a title="Demo: Web Search Widget for Y!CN" href="http://answersy.com/ajax/widgetYCN.html">.</a> All you need is to copy the javascript code in the textarea and paste it on your page.</p>
<p>This version is implemented using iframe. I have a demo to use <a target="_blank" title="Ajax Demo" href="http://answersy.com/ajax/getYCN.html">Ajax,</a> but it will fail on other sites because XMLHttpRequest or ActiveXObject can only request data from the same domain. There is workaround, but not simple.</p>
<p>To implement UI widgets using javascript:</p>
<p>(1) include a piece of javascript code</p>
<p>(2) the code will do <font color="brown">document.write("&lt;iframe src = Service.html /&gt;");</font></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fanswersy.com%2Fzchen%2F2007%2F10%2F29%2Fdemo-web-search-widget-for-ycn%2F';
  addthis_title  = 'Demo%3A+Web+Search+Widget+for+Y%21CN';
  addthis_pub    = 'zchen050815';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://answersy.com/zchen/2007/10/29/demo-web-search-widget-for-ycn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why did el.style.cursor	= &#8220;hand&#8221; not work in Firefox?</title>
		<link>http://answersy.com/zchen/2007/10/22/why-did-elstylecursor-hand-not-work-in-firefox/</link>
		<comments>http://answersy.com/zchen/2007/10/22/why-did-elstylecursor-hand-not-work-in-firefox/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 21:53:35 +0000</pubDate>
		<dc:creator>zchen</dc:creator>
				<category><![CDATA[HTML/CSS/JS/AJAX]]></category>
		<category><![CDATA[IT Related]]></category>

		<guid isPermaLink="false">http://answersy.com/zchen/2007/10/22/why-did-elstylecursor-hand-not-work-in-firefox/</guid>
		<description><![CDATA[Use el.style.cursor = "pointer"; instead! It works for both IE and FF. See also http://www.permadi.com/tutorial/cssCustomCursor/ for a more detailed explanation. addthis_url = 'http%3A%2F%2Fanswersy.com%2Fzchen%2F2007%2F10%2F22%2Fwhy-did-elstylecursor-hand-not-work-in-firefox%2F'; addthis_title = 'Why+did+el.style.cursor%09%3D+%26%238220%3Bhand%26%238221%3B+not+work+in+Firefox%3F'; addthis_pub = 'zchen050815';]]></description>
			<content:encoded><![CDATA[<p>Use <font color="brown">el.style.cursor = "pointer";</font> instead! It works for both IE and FF.</p>
<p>See also <a href="http://www.permadi.com/tutorial/cssCustomCursor/">http://www.permadi.com/tutorial/cssCustomCursor/</a> for a more detailed explanation.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fanswersy.com%2Fzchen%2F2007%2F10%2F22%2Fwhy-did-elstylecursor-hand-not-work-in-firefox%2F';
  addthis_title  = 'Why+did+el.style.cursor%09%3D+%26%238220%3Bhand%26%238221%3B+not+work+in+Firefox%3F';
  addthis_pub    = 'zchen050815';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://answersy.com/zchen/2007/10/22/why-did-elstylecursor-hand-not-work-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bookmarklet to Try Y!CN Omin Search on any Web Page</title>
		<link>http://answersy.com/zchen/2007/10/11/bookmarklet-to-try-ycn-omin-search-on-baiducom-and-googlecn-search-page/</link>
		<comments>http://answersy.com/zchen/2007/10/11/bookmarklet-to-try-ycn-omin-search-on-baiducom-and-googlecn-search-page/#comments</comments>
		<pubDate>Thu, 11 Oct 2007 07:33:49 +0000</pubDate>
		<dc:creator>zchen</dc:creator>
				<category><![CDATA[HTML/CSS/JS/AJAX]]></category>
		<category><![CDATA[IT Related]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://answersy.com/zchen/2007/10/11/bookmarklet-to-try-ycn-omin-search-on-baiducom-and-googlecn-search-page/</guid>
		<description><![CDATA[将下面的链接作成书签：雅虎全能搜! or Omni Search! 如果是使用IE, 请加在 Favorite "Links"中，如下 如果使用Firefox,请加在Bookmarks Toolbar上，如下 这样，当你在Baidu.com，或者Google.cn搜索时，只要点击一下书签工具栏上的“雅虎全能搜！”，就可以看到雅虎全能搜索在相同关键字上的结果了。我进一步修改了一下程序，现在，在任何网站的页面上，只要你选择了一段小于200字的文字，书签工具栏上的“雅虎全能搜！”，你就可以用你选择的文字作为关键字在雅虎全能搜索上做一次搜索。 addthis_url = 'http%3A%2F%2Fanswersy.com%2Fzchen%2F2007%2F10%2F11%2Fbookmarklet-to-try-ycn-omin-search-on-baiducom-and-googlecn-search-page%2F'; addthis_title = 'Bookmarklet+to+Try+Y%21CN+Omin+Search+on+any+Web+Page'; addthis_pub = 'zchen050815';]]></description>
			<content:encoded><![CDATA[<p>将下面的链接作成书签：<a href="javascript:(function(){var s = document.createElement('script'); s.setAttribute('type', 'text/javascript'); s.setAttribute('src',  'http://www.answersy.com/js/try_ycnomni.user.js'); document.getElementsByTagName('head')[0].appendChild(s);})();">雅虎全能搜!</a> or  <a href="javascript:(function(){var s = document.createElement('script'); s.setAttribute('type', 'text/javascript'); s.setAttribute('src',  'http://www.answersy.com/js/try_ycnomni.user.js'); document.getElementsByTagName('head')[0].appendChild(s);})();">Omni Search!</a></p>
<p>如果是<strong>使用IE</strong>, 请加在 Favorite "Links"中，如下<br />
<img alt="try_ycn_omni_ie.gif" id="image85" src="http://answersy.com/zchen/wp-content/uploads/2007/10/try_ycn_omni_ie.gif" /></p>
<p>如果<strong>使用Firefox</strong>,请加在Bookmarks Toolbar上，如下</p>
<p><img alt="try_ycn_omni_ff.gif" id="image86" src="http://answersy.com/zchen/wp-content/uploads/2007/10/try_ycn_omni_ff.gif" /></p>
<p>这样，当你在<strong>Baidu.com</strong>，或者<strong>Google.cn</strong>搜索时，只要点击一下书签工具栏上的“<strong>雅虎全能搜！</strong>”，就可以看到雅虎全能搜索在相同关键字上的结果了。我进一步修改了一下程序，现在，在<strong>任何网站的页面</strong>上，只要你选择了一段小于200字的文字，书签工具栏上的“<strong>雅虎全能搜！</strong>”，你就可以用你选择的文字作为关键字在<a title="Yahoo China Omni Search" target="_blank" href="http://www.yahoo.cn/">雅虎全能搜索</a>上做一次搜索。</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fanswersy.com%2Fzchen%2F2007%2F10%2F11%2Fbookmarklet-to-try-ycn-omin-search-on-baiducom-and-googlecn-search-page%2F';
  addthis_title  = 'Bookmarklet+to+Try+Y%21CN+Omin+Search+on+any+Web+Page';
  addthis_pub    = 'zchen050815';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://answersy.com/zchen/2007/10/11/bookmarklet-to-try-ycn-omin-search-on-baiducom-and-googlecn-search-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create favicon.ico with IE using Photoshop?</title>
		<link>http://answersy.com/zchen/2007/10/10/how-to-create-faviconico-with-ie-using-photoshop/</link>
		<comments>http://answersy.com/zchen/2007/10/10/how-to-create-faviconico-with-ie-using-photoshop/#comments</comments>
		<pubDate>Wed, 10 Oct 2007 04:18:30 +0000</pubDate>
		<dc:creator>zchen</dc:creator>
				<category><![CDATA[HTML/CSS/JS/AJAX]]></category>

		<guid isPermaLink="false">http://answersy.com/zchen/2007/10/10/how-to-create-faviconico-with-ie-using-photoshop/</guid>
		<description><![CDATA[If you search the web, you will get the following anwser: add the follow code to your HTML &#60;link rel="shortcut icon" xhref="http://www.domain.com/dir/favicon.ico" /&#62; If you use Firefox, you can use any image format like gif, bmp, etc., but IE will only accept windows .ico format. You can create a .ico file with Photoshop, however, you [...]]]></description>
			<content:encoded><![CDATA[<p>If you search the web, you will get the following anwser: add the follow code to your HTML</p>
<p><font color="brown">&lt;link rel="shortcut icon" xhref="http://www.domain.com/dir/favicon.ico" /&gt;</font></p>
<p>If you use Firefox, you can use any image format like gif, bmp, etc., but IE will only accept windows .ico format.</p>
<p>You can create a .ico file with Photoshop, however, you need to download a plugin to do so.</p>
<p>Go to <a target="_blank" title="Telegraphics' Free plugins for Photoshop & Illustrator...and other software" href="http://www.telegraphics.com.au/sw/">http://www.telegraphics.com.au/sw/</a>, download the right version in the section <strong>ICO (Windows Icon) Format</strong>. For Windows, the file name is ICOFormat-1.6f9-win.zip, extract the file and follow the instruction in README.html:</p>
<ol>
<li>Move the plugin into the "File Formats" folder   inside your Photoshop Plugins folder:
<ul>
<li>On Windows, <strong>ICOFormat.8bi</strong></li>
<li>On OS X/Classic, <strong>icoformat</strong> (CS2/Mac version is <strong>ICOFormat_cs2.plugin</strong>)</li>
<li>On 68K MacOS, <strong>icoformat(68K)</strong></li>
</ul>
</li>
<li>Quit and relaunch Photoshop, if it's already running.</li>
</ol>
<p>Now you shall be able to save an image in Windows icon format.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fanswersy.com%2Fzchen%2F2007%2F10%2F10%2Fhow-to-create-faviconico-with-ie-using-photoshop%2F';
  addthis_title  = 'How+to+Create+favicon.ico+with+IE+using+Photoshop%3F';
  addthis_pub    = 'zchen050815';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://answersy.com/zchen/2007/10/10/how-to-create-faviconico-with-ie-using-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do IE and Firefox Handle Color Differently?</title>
		<link>http://answersy.com/zchen/2007/10/09/how-do-ie-and-firefox-handle-color-differently/</link>
		<comments>http://answersy.com/zchen/2007/10/09/how-do-ie-and-firefox-handle-color-differently/#comments</comments>
		<pubDate>Tue, 09 Oct 2007 22:30:03 +0000</pubDate>
		<dc:creator>zchen</dc:creator>
				<category><![CDATA[HTML/CSS/JS/AJAX]]></category>
		<category><![CDATA[IT Related]]></category>

		<guid isPermaLink="false">http://answersy.com/zchen/2007/10/09/how-do-ie-and-firefox-handle-color-differently/</guid>
		<description><![CDATA[I have found this pretty interesting Both IE (7.0) and Firefox handle {background-color:#ffffff;} and {background-color:#fff;} in a CSS style sheet correctly. But IE does not like &#60;tr bgColor = "fff"&#62; in HTML, and tr.bgColor = "fff"; in Javascrip. It seems Firefox handles it correctly. addthis_url = 'http%3A%2F%2Fanswersy.com%2Fzchen%2F2007%2F10%2F09%2Fhow-do-ie-and-firefox-handle-color-differently%2F'; addthis_title = 'How+do+IE+and+Firefox+Handle+Color+Differently%3F'; addthis_pub = 'zchen050815';]]></description>
			<content:encoded><![CDATA[<p>I have found this pretty interesting</p>
<p>Both IE (7.0) and Firefox handle <font color="brown">{background-color:#ffffff;} </font> and  <font color="brown">{</font><font color="brown">background-color:</font><font color="brown">#fff;} </font> in a CSS style sheet correctly.</p>
<p>But IE does not like <font color="brown">&lt;tr bgColor = "fff"&gt;</font>  in HTML, and <font color="brown">tr.bgColor = "fff"; </font>  in Javascrip.</p>
<p>It seems Firefox handles it correctly.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fanswersy.com%2Fzchen%2F2007%2F10%2F09%2Fhow-do-ie-and-firefox-handle-color-differently%2F';
  addthis_title  = 'How+do+IE+and+Firefox+Handle+Color+Differently%3F';
  addthis_pub    = 'zchen050815';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://answersy.com/zchen/2007/10/09/how-do-ie-and-firefox-handle-color-differently/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.501 seconds -->

