All are well acquainted with Indian Parliament League (IPL) results, which out on 16th May 09.
Overall the result is FAIR enough. The people are not bogus or illiterate to choose the right Government.
I’m congratulating Mr. Naveen Patnaik, The Chief Minister of Odisha and Biju Janata Dala (BJD) supremo for this clean victory with the competitors [...]
NOKIA – Connecting People!
SAMSUNG – Every One Is Invited!
CELL ONE – Changing Life Style!
PHILIPS – Lets Makes Things Better!
TAPAL – Jaisay Chaho Jeoooo!
SPRITE – Sirf Yeh Bhujaye Pyas, Baki sab Bakwass!
PEPSI – Yeh Dil mange More!
LG – Digitally Yours!
NIKE – Just Do It!
HABIB – Kyoun Kay Ye Dil Ka Mamla Hai!
WAVES – Naam Hi Kafi [...]
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
… … …
<div class=”outter-content”>
<div class=”content-home”>
<div class=”banner”>… … …</div>
</div>
</div>
… … …
CSS CODE
.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”) [...]
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 to set body margin and padding to get
[...]