<?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>Web development &#187; Endif</title>
	<atom:link href="http://sourcecodemoney.com/tag/endif/feed/" rel="self" type="application/rss+xml" />
	<link>http://sourcecodemoney.com</link>
	<description>Use source code for money</description>
	<lastBuildDate>Mon, 21 Nov 2011 12:03:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Show code to wordpress home only</title>
		<link>http://sourcecodemoney.com/show-code-to-wordpress-home-only/php-code/</link>
		<comments>http://sourcecodemoney.com/show-code-to-wordpress-home-only/php-code/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 16:10:46 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHP code]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Endif]]></category>
		<category><![CDATA[Is_home]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Wordpress Is_home]]></category>

		<guid isPermaLink="false">http://sourcecodemoney.com/?p=56</guid>
		<description><![CDATA[		<link href="http://sourcecodemoney.com/wp-content/plugins/diggme/css.css" rel="stylesheet" type="text/css" />
		Use this code to show only to home page only on wordpress: &#60;?php if (is_home()) : ?&#62; //your code here &#60;?php endif; ?&#62;]]></description>
			<content:encoded><![CDATA[		<link href="http://sourcecodemoney.com/wp-content/plugins/diggme/css.css" rel="stylesheet" type="text/css" />
		<div id="diggbutton"><a href="http://digg.com/submit?phase=2&amp;url=http://sourcecodemoney.com/show-code-to-wordpress-home-only/php-code/"><img src="http://sourcecodemoney.com/wp-content/plugins/diggme/digg.png"></a></div><p>Use this code to show only to home page only on wordpress:</p>
<div id="code">&lt;?php if (is_home()) : ?&gt;</p>
<p>//your code here</p>
<p>&lt;?php endif; ?&gt;</p></div>
]]></content:encoded>
			<wfw:commentRss>http://sourcecodemoney.com/show-code-to-wordpress-home-only/php-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use different css on different browser</title>
		<link>http://sourcecodemoney.com/how-to-use-different-css-on-different-browser/php-code/</link>
		<comments>http://sourcecodemoney.com/how-to-use-different-css-on-different-browser/php-code/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 05:02:27 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[PHP code]]></category>
		<category><![CDATA[Browser Compatibility]]></category>
		<category><![CDATA[Code Lt]]></category>
		<category><![CDATA[Css Style]]></category>
		<category><![CDATA[Download Full]]></category>
		<category><![CDATA[Endif]]></category>
		<category><![CDATA[Gte]]></category>
		<category><![CDATA[Ie 6]]></category>
		<category><![CDATA[Ie6]]></category>
		<category><![CDATA[Ie8]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Lte]]></category>
		<category><![CDATA[Spesific]]></category>
		<category><![CDATA[Style Css]]></category>
		<category><![CDATA[Style Type]]></category>

		<guid isPermaLink="false">http://sourcecodemoney.com/?p=62</guid>
		<description><![CDATA[		<link href="http://sourcecodemoney.com/wp-content/plugins/diggme/css.css" rel="stylesheet" type="text/css" />
		Cross Browser Compatibility is a huge issue in the website development with many browsers in the market. But luckily most of them uses Internet Explorer and Firefox. Sometimes different version of browser also have different output like the display in IE8 and IE6. To tackle this you can use different css for different browser. Here&#8217;s [...]]]></description>
			<content:encoded><![CDATA[		<link href="http://sourcecodemoney.com/wp-content/plugins/diggme/css.css" rel="stylesheet" type="text/css" />
		<div id="diggbutton"><a href="http://digg.com/submit?phase=2&amp;url=http://sourcecodemoney.com/how-to-use-different-css-on-different-browser/php-code/"><img src="http://sourcecodemoney.com/wp-content/plugins/diggme/digg.png"></a></div><p>Cross Browser Compatibility is a huge issue in the website development with many browsers in the market. But luckily most of them uses Internet Explorer and Firefox. Sometimes different version of browser also have different output like the display in IE8 and IE6. To tackle this you can use different css for different browser.</p>
<p>Here&#8217;s the code:</p>
<div id="code">&lt;!&#8211;[if lte IE 6]&gt;<br />
&lt;style type=&#8221;text/css&#8221; media=&#8221;screen&#8221;&gt;<br />
@import &#8220;ie.css&#8221;;<br />
&lt;/style&gt;<br />
&lt;![endif]&#8211;&gt;</div>
<div></div>
<div></div>
<div><em><strong>if lte IE 6 </strong></em>means if browser is lower than equal (<strong>lte</strong>) IE 6. If you want to use the css specifically to IE 6 then:  <em><strong>&lt;!&#8211;[if IE 6]&gt;. </strong></em>There are also <strong>gte </strong>(greater then equal) for browser above or equal a spesific browser. Here&#8217;s the summary:</div>
<div>
<ul>
<li>lte IE 6 -&gt; IE 6 and all version lower</li>
<li>lt IE 6  -&gt; version below IE 6</li>
<li>IE 6 -&gt; only IE 6</li>
<li>gt IE 6 -&gt; version higher IE 6</li>
<li>gte IE 6 -&gt; IE 6 and all version higher</li>
</ul>
</div>
<div></div>
<div>Download the full code <a href="http://sourcecodemoney.com/doc/browser.zip">here</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://sourcecodemoney.com/how-to-use-different-css-on-different-browser/php-code/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

