<?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>Irina</title>
	<atom:link href="http://www.irinapro.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.irinapro.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 27 Jan 2012 18:02:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Jquery loop</title>
		<link>http://www.irinapro.com/post/jquery-loop/</link>
		<comments>http://www.irinapro.com/post/jquery-loop/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 18:01:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[js]]></category>

		<guid isPermaLink="false">http://www.irinapro.com/post/jquery-loop/</guid>
		<description><![CDATA[http://jdbartlett.com/loupe/
]]></description>
			<content:encoded><![CDATA[<p><a href="http://jdbartlett.com/loupe/">http://jdbartlett.com/loupe/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.irinapro.com/post/jquery-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Css3 gradients</title>
		<link>http://www.irinapro.com/post/css3-gradients/</link>
		<comments>http://www.irinapro.com/post/css3-gradients/#comments</comments>
		<pubDate>Sun, 29 May 2011 16:53:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.irinapro.com/?p=62</guid>
		<description><![CDATA[http://css-tricks.com/examples/CSS3Gradient/
]]></description>
			<content:encoded><![CDATA[<p><a href="http://css-tricks.com/examples/CSS3Gradient/">http://css-tricks.com/examples/CSS3Gradient/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.irinapro.com/post/css3-gradients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS: border-radius and -moz-border-radius</title>
		<link>http://www.irinapro.com/post/css-border-radius-and-moz-border-radius/</link>
		<comments>http://www.irinapro.com/post/css-border-radius-and-moz-border-radius/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 09:13:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.irinapro.com/?p=60</guid>
		<description><![CDATA[1. Rounded Corners for Firefox, Safari &#038; Chrome
.rounded-corners {
     -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -khtml-border-radius: 20px;
    border-radius: 20px;
}
2. Border Radius and Other special effects
http://www.the-art-of-web.com/css/border-radius/
3. Border radius for Interner Explorer
http://jonraasch.com/blog/css-rounded-corners-in-all-browsers
]]></description>
			<content:encoded><![CDATA[<p>1. Rounded Corners for Firefox, Safari &#038; Chrome</p>
<blockquote><p>.rounded-corners {<br />
     -moz-border-radius: 20px;<br />
    -webkit-border-radius: 20px;<br />
    -khtml-border-radius: 20px;<br />
    border-radius: 20px;<br />
}</p></blockquote>
<p>2. Border Radius and Other special effects<br />
<a href="http://www.the-art-of-web.com/css/border-radius/">http://www.the-art-of-web.com/css/border-radius/</a></p>
<p>3. Border radius for Interner Explorer<br />
<a href="http://jonraasch.com/blog/css-rounded-corners-in-all-browsers">http://jonraasch.com/blog/css-rounded-corners-in-all-browsers</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.irinapro.com/post/css-border-radius-and-moz-border-radius/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css3 Rounded Corners</title>
		<link>http://www.irinapro.com/post/css3-rounded-corners/</link>
		<comments>http://www.irinapro.com/post/css3-rounded-corners/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 16:07:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.irinapro.com/post/css3-rounded-corners/</guid>
		<description><![CDATA[-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
border: solid 1px #414141;
border-bottom-left-radius: 2px 2px;
border-bottom-right-radius: 2px 2px;
border-top-left-radius: 2px 2px;
border-top-right-radius: 2px 2px;

]]></description>
			<content:encoded><![CDATA[<blockquote><p>-webkit-border-radius: 2px;<br />
-moz-border-radius: 2px;<br />
border-radius: 2px;<br />
border: solid 1px #414141;<br />
border-bottom-left-radius: 2px 2px;<br />
border-bottom-right-radius: 2px 2px;<br />
border-top-left-radius: 2px 2px;<br />
border-top-right-radius: 2px 2px;
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.irinapro.com/post/css3-rounded-corners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS3 Generator</title>
		<link>http://www.irinapro.com/post/css3-generator/</link>
		<comments>http://www.irinapro.com/post/css3-generator/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 07:09:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.irinapro.com/?p=57</guid>
		<description><![CDATA[http://css3generator.com/
]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://css3generator.com/">http://css3generator.com/</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.irinapro.com/post/css3-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to implement :first-child for IE6</title>
		<link>http://www.irinapro.com/post/how-to-implement-first-child-for-ie6/</link>
		<comments>http://www.irinapro.com/post/how-to-implement-first-child-for-ie6/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 10:55:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.irinapro.com/post/how-to-implement-first-child-for-ie6/</guid>
		<description><![CDATA[With CSS
http://mauzon.com/first-child-and-directly-nested-children-for-ie6/
http://mauzon.com/pseudoclasses-first-child-and-last-child-for-ie6/

With Jquery
http://www.pathf.com/blogs/2008/04/hacking-the-fir/
]]></description>
			<content:encoded><![CDATA[<blockquote><p><strong>With CSS</strong><br />
<a href="http://mauzon.com/first-child-and-directly-nested-children-for-ie6/">http://mauzon.com/first-child-and-directly-nested-children-for-ie6/</a></p>
<p><a href="http://mauzon.com/pseudoclasses-first-child-and-last-child-for-ie6/">http://mauzon.com/pseudoclasses-first-child-and-last-child-for-ie6/</a>
</p></blockquote>
<blockquote><p><strong>With Jquery</strong><br />
<a href="http://www.pathf.com/blogs/2008/04/hacking-the-fir/">http://www.pathf.com/blogs/2008/04/hacking-the-fir/</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.irinapro.com/post/how-to-implement-first-child-for-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery kwicks</title>
		<link>http://www.irinapro.com/post/jquery-kwicks/</link>
		<comments>http://www.irinapro.com/post/jquery-kwicks/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 13:30:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.irinapro.com/post/jquery-kwicks/</guid>
		<description><![CDATA[http://www.jeremymartin.name/projects.php?project=kwicks

http://www.kriesi.at/archives/apple-menu-improved-with-jquery
]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://www.jeremymartin.name/projects.php?project=kwicks">http://www.jeremymartin.name/projects.php?project=kwicks</a></p></blockquote>
<p><br/></p>
<blockquote><p><a href="http://www.kriesi.at/archives/apple-menu-improved-with-jquery">http://www.kriesi.at/archives/apple-menu-improved-with-jquery</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.irinapro.com/post/jquery-kwicks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PIE and Internet Explorer 6-8</title>
		<link>http://www.irinapro.com/post/pie-internet-explorer-6-8/</link>
		<comments>http://www.irinapro.com/post/pie-internet-explorer-6-8/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 19:29:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.irinapro.com/?p=53</guid>
		<description><![CDATA[I needed to get code appear in IE 6-8, for a new RPG we&#8217;re making. PIE makes Internet Explorer 6-8 capable of rendering several of the most useful CSS3 decoration features.

http://css3pie.com/

]]></description>
			<content:encoded><![CDATA[<p>I needed to get code appear in IE 6-8, for a <a href="http://www.riftforge.com/">new RPG</a> we&#8217;re making. PIE makes Internet Explorer 6-8 capable of rendering several of the most useful CSS3 decoration features.</p>
<blockquote><p>
<a href="http://css3pie.com/">http://css3pie.com/</a>
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.irinapro.com/post/pie-internet-explorer-6-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Check Font Type &amp; Size Used on a Website Without Investigating the CSS</title>
		<link>http://www.irinapro.com/post/httpwww-themisteriosos-comhow-to-check-font-type-used-on-website-without-css-context-font-checker-htm/</link>
		<comments>http://www.irinapro.com/post/httpwww-themisteriosos-comhow-to-check-font-type-used-on-website-without-css-context-font-checker-htm/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 15:50:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.irinapro.com/post/httpwww-themisteriosos-comhow-to-check-font-type-used-on-website-without-css-context-font-checker-htm/</guid>
		<description><![CDATA[
http://www.themisteriosos.com/how-to-check-font-type-used-on-website-without-css-context-font-checker.htm

]]></description>
			<content:encoded><![CDATA[<blockquote><p>
<a href="http://www.themisteriosos.com/how-to-check-font-type-used-on-website-without-css-context-font-checker.htm">http://www.themisteriosos.com/how-to-check-font-type-used-on-website-without-css-context-font-checker.htm</a>
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.irinapro.com/post/httpwww-themisteriosos-comhow-to-check-font-type-used-on-website-without-css-context-font-checker-htm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JS Nice Form</title>
		<link>http://www.irinapro.com/post/js-nice-form/</link>
		<comments>http://www.irinapro.com/post/js-nice-form/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 07:11:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.irinapro.com/?p=51</guid>
		<description><![CDATA[http://www.emblematiq.com/lab/niceforms/download/

]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://www.emblematiq.com/lab/niceforms/download/">http://www.emblematiq.com/lab/niceforms/download/</a>
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.irinapro.com/post/js-nice-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

