Site Sponsors

IE6 Issue fixed for 3 column layout seo (search engine optimisation)

You may remember in my previous post that I had an issue with IE6 for the 3 column layout for seo (search engine optimisation). Well you will be glad to hear that I have sorted it, the latest CSS can be found below, just copy this over your existing CSS from the previous post and there you go, all done.

CSS code

#header, #footer {
width:770px;
margin:0px auto 0px auto;
height:50px;
background-color:#dedede;
}

#navigavtion, #rightSide {
width:150px;
}

#navigavtion {
float:left;
background-color:blue;
padding:0px 0px 1000px 0px;
margin:0px 0px -1000px -620px;
margin-right:150px;
}

#centre {
width:470px;
float:left;
background-color:green;
padding-left:150px;
}

#rightSide {
background-color:red;
float:right;
padding:0 0 1000px 0;
margin:0 0 -1000px 0;
}

#container {
width:770px;
margin:0px auto 0px auto;
overflow:hidden;
}

#footer {
clear:both;
}
Posted in: Layouts

Leave a Reply

You must be logged in to post a comment.