<?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: Rounded Corners in IE: The HTC Way</title>
	<atom:link href="http://www.unemployeddeveloper.com/187_rounded-corners-in-ie-the-htc-way/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.unemployeddeveloper.com/187_rounded-corners-in-ie-the-htc-way/</link>
	<description></description>
	<lastBuildDate>Thu, 05 Jan 2012 07:32:27 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: pieGuy</title>
		<link>http://www.unemployeddeveloper.com/187_rounded-corners-in-ie-the-htc-way/comment-page-1/#comment-460</link>
		<dc:creator>pieGuy</dc:creator>
		<pubDate>Tue, 06 Sep 2011 16:28:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.unemployeddeveloper.com/?p=187#comment-460</guid>
		<description>my best friend is a pie. i love that pie.</description>
		<content:encoded><![CDATA[<p>my best friend is a pie. i love that pie.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Indian</title>
		<link>http://www.unemployeddeveloper.com/187_rounded-corners-in-ie-the-htc-way/comment-page-1/#comment-456</link>
		<dc:creator>Indian</dc:creator>
		<pubDate>Sat, 09 Jul 2011 05:42:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.unemployeddeveloper.com/?p=187#comment-456</guid>
		<description>Thanks for writing such an easy-to-unedrtnsad article on this topic.</description>
		<content:encoded><![CDATA[<p>Thanks for writing such an easy-to-unedrtnsad article on this topic.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Coken Horse</title>
		<link>http://www.unemployeddeveloper.com/187_rounded-corners-in-ie-the-htc-way/comment-page-1/#comment-451</link>
		<dc:creator>Coken Horse</dc:creator>
		<pubDate>Wed, 16 Mar 2011 11:51:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.unemployeddeveloper.com/?p=187#comment-451</guid>
		<description>sometimes cheese smells funny.</description>
		<content:encoded><![CDATA[<p>sometimes cheese smells funny.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Backlinks</title>
		<link>http://www.unemployeddeveloper.com/187_rounded-corners-in-ie-the-htc-way/comment-page-1/#comment-450</link>
		<dc:creator>Backlinks</dc:creator>
		<pubDate>Thu, 03 Mar 2011 16:33:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.unemployeddeveloper.com/?p=187#comment-450</guid>
		<description>Your thoughts and opinions help me see the light. Thanks.</description>
		<content:encoded><![CDATA[<p>Your thoughts and opinions help me see the light. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raymond Schweers</title>
		<link>http://www.unemployeddeveloper.com/187_rounded-corners-in-ie-the-htc-way/comment-page-1/#comment-442</link>
		<dc:creator>Raymond Schweers</dc:creator>
		<pubDate>Fri, 17 Dec 2010 08:55:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.unemployeddeveloper.com/?p=187#comment-442</guid>
		<description>Your missing opera in your css and future IE&#039;s will support border-radius. So it&#039;s smart to add border-radius without -moz- etc..

.curved {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px; /* opera */
  border-radius: 10px; /* Future browsers */
  behavior:url(border-radius-ie8.htc); /*Path to htc file*/
}

Cya!</description>
		<content:encoded><![CDATA[<p>Your missing opera in your css and future IE&#8217;s will support border-radius. So it&#8217;s smart to add border-radius without -moz- etc..</p>
<p>.curved {<br />
  -moz-border-radius: 10px;<br />
  -webkit-border-radius: 10px;<br />
  -o-border-radius: 10px; /* opera */<br />
  border-radius: 10px; /* Future browsers */<br />
  behavior:url(border-radius-ie8.htc); /*Path to htc file*/<br />
}</p>
<p>Cya!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy Miller</title>
		<link>http://www.unemployeddeveloper.com/187_rounded-corners-in-ie-the-htc-way/comment-page-1/#comment-435</link>
		<dc:creator>Jeremy Miller</dc:creator>
		<pubDate>Fri, 10 Sep 2010 23:25:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.unemployeddeveloper.com/?p=187#comment-435</guid>
		<description>I was working on this and had a problem with the htc, too.  I changed the z-index lines (65 and 66) to 

var el_zindex = parseInt(el.currentStyle.zIndex);
if (isNaN(el_zindex)) { el_zindex = 0; }
el.style.zIndex = el_zindex;

and was successful at having the rendering work in IE 8.

Hope that helps.</description>
		<content:encoded><![CDATA[<p>I was working on this and had a problem with the htc, too.  I changed the z-index lines (65 and 66) to </p>
<p>var el_zindex = parseInt(el.currentStyle.zIndex);<br />
if (isNaN(el_zindex)) { el_zindex = 0; }<br />
el.style.zIndex = el_zindex;</p>
<p>and was successful at having the rendering work in IE 8.</p>
<p>Hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dewayne Ralphs</title>
		<link>http://www.unemployeddeveloper.com/187_rounded-corners-in-ie-the-htc-way/comment-page-1/#comment-434</link>
		<dc:creator>Dewayne Ralphs</dc:creator>
		<pubDate>Tue, 31 Aug 2010 00:13:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.unemployeddeveloper.com/?p=187#comment-434</guid>
		<description>Fed up with obtaining low amounts of useless visitors to your website? Well i want to share with you a brand new underground tactic that produces me personally $900  per day on 100% AUTOPILOT. I really could be here all day and going into detail but why dont you just check their site out? There is really a great video that explains everything. So if your seriously interested in making effortless cash this is the site for you. &lt;a href=&quot;http://tiny.cc/p7mq4&quot; rel=&quot;nofollow&quot;&gt;Auto Traffic Avalanche&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Fed up with obtaining low amounts of useless visitors to your website? Well i want to share with you a brand new underground tactic that produces me personally $900  per day on 100% AUTOPILOT. I really could be here all day and going into detail but why dont you just check their site out? There is really a great video that explains everything. So if your seriously interested in making effortless cash this is the site for you. <a href="http://tiny.cc/p7mq4" rel="nofollow">Auto Traffic Avalanche</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tristan</title>
		<link>http://www.unemployeddeveloper.com/187_rounded-corners-in-ie-the-htc-way/comment-page-1/#comment-35</link>
		<dc:creator>Tristan</dc:creator>
		<pubDate>Fri, 16 Oct 2009 13:52:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.unemployeddeveloper.com/?p=187#comment-35</guid>
		<description>It&#039;s actually because the HTC file checks the className of the element that invokes it, and if it isn&#039;t the same as the predefined value --v08vnSVo78t4JfjH-- then it fails fast.

you will need to change that part of the file, or change it not to check. Either way you will need to change something. 

You should also note that it is GPLv3. There may be legal implications in using the code.</description>
		<content:encoded><![CDATA[<p>It&#8217;s actually because the HTC file checks the className of the element that invokes it, and if it isn&#8217;t the same as the predefined value &#8211;v08vnSVo78t4JfjH&#8211; then it fails fast.</p>
<p>you will need to change that part of the file, or change it not to check. Either way you will need to change something. </p>
<p>You should also note that it is GPLv3. There may be legal implications in using the code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marco</title>
		<link>http://www.unemployeddeveloper.com/187_rounded-corners-in-ie-the-htc-way/comment-page-1/#comment-31</link>
		<dc:creator>Marco</dc:creator>
		<pubDate>Thu, 15 Oct 2009 23:24:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.unemployeddeveloper.com/?p=187#comment-31</guid>
		<description>Maybe it&#039;s due to the fact that .htc files must be refered to the position of the html file (even if it&#039;s a dynamic page) instead of the css file
did you try that ?</description>
		<content:encoded><![CDATA[<p>Maybe it&#8217;s due to the fact that .htc files must be refered to the position of the html file (even if it&#8217;s a dynamic page) instead of the css file<br />
did you try that ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

