<?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>Chinmay Chiranjeeb &#187; IE6 Fixes</title>
	<atom:link href="http://www.chiranjeeb.com/tag/ie6-fixes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chiranjeeb.com</link>
	<description>a UI Developer.</description>
	<lastBuildDate>Thu, 19 Jan 2012 21:56:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>IE6 color patches on scroll Fixes</title>
		<link>http://www.chiranjeeb.com/ie6-color-patches-on-scroll-fixes/</link>
		<comments>http://www.chiranjeeb.com/ie6-color-patches-on-scroll-fixes/#comments</comments>
		<pubDate>Mon, 04 May 2009 17:19:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS Hacks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Color Patches]]></category>
		<category><![CDATA[IE6 Fixes]]></category>

		<guid isPermaLink="false">http://www.chiranjeeb.com/?p=198</guid>
		<description><![CDATA[I came across the color patches problem on scroll of IE6. Cause: If we have no or different background color in the parent div and the Current div has different background color. Example: HTML CODE &#8230; &#8230; &#8230; &#60;div class=&#8221;outter-content&#8221;&#62; &#8230; <a href="http://www.chiranjeeb.com/ie6-color-patches-on-scroll-fixes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I came across the color patches problem on scroll of IE6.<br />
<strong>Cause:</strong> If we have no or different background color in the parent div and the Current div has different background color.</p>
<p><strong>Example: </strong></p>
<p><strong>HTML CODE</strong></p>
<p>&#8230; &#8230; &#8230;</p>
<p>&lt;div class=&#8221;outter-content&#8221;&gt;</p>
<p>&lt;div class=&#8221;content-home&#8221;&gt;</p>
<p>&lt;div class=&#8221;banner&#8221;&gt;&#8230; &#8230; &#8230;&lt;/div&gt;</p>
<p>&lt;/div&gt;</p>
<p>&lt;/div&gt;</p>
<p>&#8230; &#8230; &#8230;<strong><br />
</strong></p>
<p><strong>CSS CODE</strong></p>
<pre>.outter-content {
	background: #000;
	clear: both;
	border:#a5b3bb 1px solid;
	border-top:0px;
}

.content-home {
	clear: both;
	padding:0 1px;
	background: #d8eaf0;
	border-bottom:1px solid #a6b4bc;
}

.banner{
	background: url("../images/banner.png") no-repeat left top;
	width:1000px;
	height:436px;
}</pre>
<p><strong></strong><strong>Screen Shots:</strong></p>
<div id="attachment_199" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-199" title="ie6-color-patches" src="http://www.chiranjeeb.com/wp-content/uploads/2009/05/ie6-color-patches.png" alt="IE6 Color Patches" width="550" height="321" /><p class="wp-caption-text">IE6 Color Patches</p></div>
<p><strong>Solution:</strong><br />
Change the background of <code>.outter-content</code> to same as <code>.content-home</code>.<br />
<strong></strong></p>
<p><strong>CSS CODE</strong></p>
<pre>.outter-content {
	background: #d8eaf0 ;
	clear: both;
	border:#a5b3bb 1px solid;
	border-top:0px;
}
... ...</pre>
<p><strong>Screen Shots:</strong></p>
<div id="attachment_200" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-200" title="ie6-color-patches-fixed" src="http://www.chiranjeeb.com/wp-content/uploads/2009/05/ie6-color-patches-fixed.png" alt="IE6 Color Patches Fixed" width="550" height="321" /><p class="wp-caption-text">IE6 Color Patches Fixed</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.chiranjeeb.com/ie6-color-patches-on-scroll-fixes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE6 Auto-width Margins Problem fixed</title>
		<link>http://www.chiranjeeb.com/ie6-auto-width-margins/</link>
		<comments>http://www.chiranjeeb.com/ie6-auto-width-margins/#comments</comments>
		<pubDate>Fri, 01 May 2009 18:57:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS Hacks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[DIV Center Align in IE6]]></category>
		<category><![CDATA[IE6 Fixes]]></category>

		<guid isPermaLink="false">http://www.chiranjeeb.com/?p=182</guid>
		<description><![CDATA[Many of developers faced the Auto width Margin (margin:0 auto;) problem in IE6 browsers to make the content div center aligned irrespective of browser window. Here is the solution. Modify the CSS accordingly: body { margin:50px 0px; padding:0px; /* Need &#8230; <a href="http://www.chiranjeeb.com/ie6-auto-width-margins/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Many of developers faced the Auto width Margin (<code>margin:0 auto;</code>) problem in IE6 browsers to make the content div center aligned irrespective of browser window.</p>
<p>Here is the solution.</p>
<p>Modify the CSS accordingly:</p>
<pre>
body {
      margin:50px 0px; padding:0px;
      /* Need to set body margin and padding to get
      consistency between browsers. */
      text-align:center; /* Hack for IE5/Win */
}

#Content {
      width:500px;
      margin:0px auto; /* Right and left margin widths set to "auto" */
      text-align:left; /* Counteract to IE5/Win Hack */
      padding:15px;
      border:1px dashed #333;
      background-color:#eee;
}
</pre>
<p>Screen Shots:</p>
<p>IE6</p>
<div id="attachment_184" class="wp-caption aligncenter" style="width: 560px"><img src="http://www.chiranjeeb.com/wp-content/uploads/2009/05/ie6.png" alt="IE6 Screen Shots" title="IE6 Screen Shots" width="550" height="330" class="size-full wp-image-184" /><p class="wp-caption-text">IE6 Screen Shots</p></div>
<p>FF3</p>
<div id="attachment_183" class="wp-caption aligncenter" style="width: 560px"><img src="http://www.chiranjeeb.com/wp-content/uploads/2009/05/ff3.png" alt="FF3 Screen Shots" title="FF3 Screen Shots" width="550" height="330" class="size-full wp-image-183" /><p class="wp-caption-text">FF3 Screen Shots</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.chiranjeeb.com/ie6-auto-width-margins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

