<?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>Nilesh Manohar &#38; Erzsebet Marothi &#187; HTML/CSS</title>
	<atom:link href="http://www.nileshmanohar.com/category/computers/htmlcss/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nileshmanohar.com</link>
	<description>Our little space on Internet</description>
	<lastBuildDate>Mon, 26 Jul 2010 11:42:56 +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>calculate div position</title>
		<link>http://www.nileshmanohar.com/2010/03/11/calculate-div-position/</link>
		<comments>http://www.nileshmanohar.com/2010/03/11/calculate-div-position/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 17:01:48 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=510</guid>
		<description><![CDATA[After trying out loads of ways to find out the position of div in web page I found this be the best code function getPosition(obj){ var topValue= 0,leftValue= 0; while(obj){ leftValue+= obj.offsetLeft; topValue+= obj.offsetTop; obj= obj.offsetParent; } finalvalue = {'left': &#8230; <a href="http://www.nileshmanohar.com/2010/03/11/calculate-div-position/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After trying out loads of ways to find out the position of div in web page I found this be the best code<br />
<code>function getPosition(obj){<br />
var topValue= 0,leftValue= 0;<br />
while(obj){<br />
leftValue+= obj.offsetLeft;<br />
topValue+= obj.offsetTop;<br />
obj= obj.offsetParent;<br />
}<br />
finalvalue = {'left': leftValue, 'top' : topValue};<br />
return finalvalue;<br />
}</code></p>
<p>In order to use this just use the following</p>
<p><code>var curPos = getPosition(document.getElementById('divInQuestion'));<br />
curPos.left is the postion left and curPos.top is the top position</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2010/03/11/calculate-div-position/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>very nice article on color theory</title>
		<link>http://www.nileshmanohar.com/2010/02/01/very-nice-article-on-color-theory/</link>
		<comments>http://www.nileshmanohar.com/2010/02/01/very-nice-article-on-color-theory/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 09:58:03 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=504</guid>
		<description><![CDATA[Color in design is very subjective. What evokes one reaction in one person may evoke a very different reaction in somone else. Sometimes this is due to personal preference, and other times due to cultural background. Color theory is a &#8230; <a href="http://www.nileshmanohar.com/2010/02/01/very-nice-article-on-color-theory/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Color in design is very subjective. What evokes one reaction in one  person may evoke a very different reaction in somone else. Sometimes  this is due to personal preference, and other times due to cultural  background. Color theory is a science in itself. Studying how colors  affect different people, either individually or as a group, is something  some people build their careers on. And there’s a lot to it. Something  as simple as changing the exact hue or saturation of a color can evoke a  completely different feeling. Cultural differences mean that something  that’s happy and uplifting in one country can be depressing in another.</p>
<p><a href="http://www.smashingmagazine.com/2010/01/28/color-theory-for-designers-part-1-the-meaning-of-color/" target="_blank">Read More</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2010/02/01/very-nice-article-on-color-theory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Differences in Internet Explorer 6, 7 and 8</title>
		<link>http://www.nileshmanohar.com/2009/10/15/css-differences-in-internet-explorer-6-7-and-8/</link>
		<comments>http://www.nileshmanohar.com/2009/10/15/css-differences-in-internet-explorer-6-7-and-8/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 08:57:03 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=485</guid>
		<description><![CDATA[One of the most bizarre statistical facts in relation to browser use has to be the virtual widespread numbers that currently exist in the use of Internet Explorer versions 6, 7 and 8. As of this writing, Internet Explorer holds &#8230; <a href="http://www.nileshmanohar.com/2009/10/15/css-differences-in-internet-explorer-6-7-and-8/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of the most bizarre statistical facts in relation to browser use has to be the virtual widespread numbers that currently exist in the use of <strong>Internet Explorer</strong> versions 6, 7 and 8. As of this writing, <a href="http://marketshare.hitslink.com/browser-market-share.aspx?qprid=0">Internet Explorer holds about a 65% market share</a> combined across all their currently used browsers. In the web development community, this number is much lower, showing <a href="http://www.w3schools.com/browsers/browsers_stats.asp">about a 40% share</a>.</p>
<p>The interesting part of those statistics is that the numbers across IE6, IE7, and IE8 are very close, preventing a single Microsoft browser from dominating browser stats — contrary to what has been the trend in the past. Due to these unfortunate statistics, it is <strong>imperative that developers do thorough testing in all currently-used Internet Explorer browsers</strong> when working on websites for clients, and on personal projects that target a broader audience.</p>
<p>Thanks to the many available JavaScript libraries, JavaScript testing across different browsers has become as close to perfect as the current situation will allow. But this is not true in CSS development, particularly in relation to the three currently used versions of Internet Explorer.</p>
<p>This article will attempt to provide an <strong>exhaustive, easy-to-use reference for developers desiring to know the differences in CSS support for IE6, IE7 and IE8</strong>. This reference contains brief descriptions and compatibility for:</p>
<ul>
<li>Any item that is supported by one of the three browser versions, but not the other two</li>
<li>Any item that is supported by two of the three browser versions, but not the other one</li>
</ul>
<p>This article does not discuss:</p>
<ul>
<li>Any item that is not supported by any of the three browser versions</li>
<li>Proprietary or vendor-specific CSS</li>
</ul>
<p><a href="http://www.smashingmagazine.com/2009/10/14/css-differences-in-internet-explorer-6-7-and-8/" target="_blank">Continue to article</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2009/10/15/css-differences-in-internet-explorer-6-7-and-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Date Display Technique with Sprites</title>
		<link>http://www.nileshmanohar.com/2009/08/11/date-display-technique-with-sprites/</link>
		<comments>http://www.nileshmanohar.com/2009/08/11/date-display-technique-with-sprites/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 08:40:50 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[sprites]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=455</guid>
		<description><![CDATA[http://css-tricks.com/date-display-with-sprites/]]></description>
			<content:encoded><![CDATA[<p><a href="http://css-tricks.com/date-display-with-sprites/" target="_blank">http://css-tricks.com/date-display-with-sprites/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2009/08/11/date-display-technique-with-sprites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cufón &#8211; Another sIFR alternative for Font Embedding</title>
		<link>http://www.nileshmanohar.com/2009/03/26/cufon-another-sifr-alternative-for-font-embedding/</link>
		<comments>http://www.nileshmanohar.com/2009/03/26/cufon-another-sifr-alternative-for-font-embedding/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 13:26:56 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Cufón]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=323</guid>
		<description><![CDATA[Cufón is similar to Typeface.js which aims to become a worthy alternative to sIFR, and despite its merits still remains painfully tricky to set up and use. Cufón consists of two individual parts as well – a font generator, which &#8230; <a href="http://www.nileshmanohar.com/2009/03/26/cufon-another-sifr-alternative-for-font-embedding/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="Cufon" href="http://cameronmoll.com/archives/2009/03/cufon_font_embedding/" target="_blank">Cufón</a> is similar to <a title="Typeface" href="http://www.webappers.com/2009/03/10/rendering-text-with-javascript-canvas-and-vml/" target="_blank">Typeface.js</a> which aims to become a worthy alternative to sIFR, and despite its merits still remains painfully tricky to set up and use. Cufón consists of two individual parts as well – a font generator, which converts fonts to a proprietary format and a rendering engine written in JavaScript.</p>
<p>It works on every major browser on the market. There is near-zero configuration needed for standard use cases. And it is fast, even for sufficiently large amounts of text.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2009/03/26/cufon-another-sifr-alternative-for-font-embedding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xinha &#8211; Online HTML Editor</title>
		<link>http://www.nileshmanohar.com/2009/02/12/xinha-online-html-editor/</link>
		<comments>http://www.nileshmanohar.com/2009/02/12/xinha-online-html-editor/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 10:08:44 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[WYSIWYG]]></category>
		<category><![CDATA[xinha]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=296</guid>
		<description><![CDATA[I have tried a few online HTML editors like tinymce and FCKeditor. But each of them had some features which the other did not have. So it was always a compromise to use them. Then I cam across Xinha. This &#8230; <a href="http://www.nileshmanohar.com/2009/02/12/xinha-online-html-editor/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have tried a few online HTML editors like tinymce and FCKeditor. But each of them had some features which the other did not have. So it was always a compromise to use them. Then I cam across <a href="http://trac.xinha.org/" target="_blank">Xinha</a>.</p>
<p>This online editor has tons of plugins. My most favorite is the &#8216;Clear Inline font specifications&#8217;. Till now all the applications I have developed that needed a WYSIWYG editor, the users were pasting the content directly from Microsoft Word. And then when the content was rendered the styles did not confirm to the global style of the application. However now using that plugin it clears all the inline font specification.</p>
<p>Go On give it a try &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2009/02/12/xinha-online-html-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cool 404 pages</title>
		<link>http://www.nileshmanohar.com/2009/02/03/cool-404-pages/</link>
		<comments>http://www.nileshmanohar.com/2009/02/03/cool-404-pages/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 14:19:24 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[404]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[error]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=276</guid>
		<description><![CDATA[Found these really cool 404 error pages Mundofox.com A 404 error page with a not-so-eloquent Homer. http://www.apartmenthomeliving.com/404.html http://huwshimi.com/404/ http://www.jhuskisson.com/404/ http://www.gog.com/en/error/404 http://brightkit.com/404]]></description>
			<content:encoded><![CDATA[<p>Found these really cool 404 error pages</p>
<p><a href="http://mundofox.com/404" target="_blank">Mundofox.com</a><br />
A 404 error page with a not-so-eloquent Homer.</p>
<p><img class="alignnone size-medium wp-image-277" title="404" src="http://www.nileshmanohar.com/wp-content/uploads/2009/02/404-1-300x241.gif" alt="404" width="300" height="241" /></p>
<p><a href="http://www.apartmenthomeliving.com/404.html" target="_blank">http://www.apartmenthomeliving.com/404.html</a></p>
<p><img class="alignnone size-medium wp-image-278" title="404-2" src="http://www.nileshmanohar.com/wp-content/uploads/2009/02/404-2-300x236.jpg" alt="404-2" width="300" height="236" /></p>
<p><a href="http://huwshimi.com/404/" target="_blank">http://huwshimi.com/404/</a></p>
<p><img class="alignnone size-medium wp-image-279" title="404-3" src="http://www.nileshmanohar.com/wp-content/uploads/2009/02/404-3-300x295.jpg" alt="404-3" width="300" height="295" /></p>
<p><a href="http://www.jhuskisson.com/404/" target="_blank">http://www.jhuskisson.com/404/</a></p>
<p><img class="alignnone size-medium wp-image-280" title="404-4" src="http://www.nileshmanohar.com/wp-content/uploads/2009/02/404-4-300x175.jpg" alt="404-4" width="300" height="175" /></p>
<p><a href="http://www.gog.com/en/error/404" target="_blank">http://www.gog.com/en/error/404</a></p>
<p><img class="alignnone size-medium wp-image-282" title="404-5" src="http://www.nileshmanohar.com/wp-content/uploads/2009/02/404-5-300x175.jpg" alt="404-5" width="300" height="175" /></p>
<p><a href="http://brightkit.com/404" target="_blank">http://brightkit.com/404</a></p>
<p><img class="alignnone size-medium wp-image-283" title="404-6" src="http://www.nileshmanohar.com/wp-content/uploads/2009/02/404-6-300x187.jpg" alt="404-6" width="300" height="187" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2009/02/03/cool-404-pages/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>cool browser icons</title>
		<link>http://www.nileshmanohar.com/2008/12/03/cool-browser-icons/</link>
		<comments>http://www.nileshmanohar.com/2008/12/03/cool-browser-icons/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 14:21:30 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[icons]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=197</guid>
		<description><![CDATA[Found this site http://morcha.blogbus.com/logs/30886671.html which has a collection of cool browser icons for free download. The site is in chinese.]]></description>
			<content:encoded><![CDATA[<p>Found this site <a href="http://morcha.blogbus.com/logs/30886671.html" target="_blank">http://morcha.blogbus.com/logs/30886671.html</a> which has a collection of cool browser icons for free download. The site is in chinese.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2008/12/03/cool-browser-icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jx &#8211; Graphical User Interface for Mootools Library</title>
		<link>http://www.nileshmanohar.com/2008/12/03/jx-graphical-user-interface-for-mootools-library/</link>
		<comments>http://www.nileshmanohar.com/2008/12/03/jx-graphical-user-interface-for-mootools-library/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 14:18:33 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[moo tools]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=195</guid>
		<description><![CDATA[Jx is a javascript library for creating graphical user interaces based on the fabulous MooTools library. They provide access to the library as well as extensive documentation and examples. The Jx examples are a set of web pages that illustrate &#8230; <a href="http://www.nileshmanohar.com/2008/12/03/jx-graphical-user-interface-for-mootools-library/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="JXx GUI for Mootools" href="http://jxlib.org/" target="_blank">Jx</a> is a javascript library for creating graphical user interaces based on the fabulous <strong>MooTools</strong> library. They provide access to the library as well as extensive documentation and examples. The Jx examples are a set of web pages that illustrate specific Jx components. Simply click on a page in the tree to the left to load the appropriate sample and get started exploring Jx right away.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2008/12/03/jx-graphical-user-interface-for-mootools-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Patterns &#8211; Yoo Hoo</title>
		<link>http://www.nileshmanohar.com/2008/12/03/free-patterns-yoo-hoo/</link>
		<comments>http://www.nileshmanohar.com/2008/12/03/free-patterns-yoo-hoo/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 14:14:15 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[patterns]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=193</guid>
		<description><![CDATA[Great and Free patterns at http://patterns.ava7.com/]]></description>
			<content:encoded><![CDATA[<p>Great and Free patterns at <a href="http://patterns.ava7.com/" target="_blank">http://patterns.ava7.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2008/12/03/free-patterns-yoo-hoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
