How to avoid sidebar of blogs dropping down in IE
Problem:
The sidebar of the blog is appearing down instead of right in the blogspot blog.
Solution:
Edit the template and adjust the following till you succeed.
Use percentage rather than pixels for the main content. Use pixels for the sidebar.
@media all {
#content {
/*width:660px;*/
width:90%;
margin:0 auto;
padding:0;
text-align:left;
}
#main {
/*width:500px;*/
width:70%;
float:left;
}
#sidebar {
width:220px;
/*width:30%;*/
float:right;
}
}
Workaround:
Use firefox, a better choice.
The sidebar of the blog is appearing down instead of right in the blogspot blog.
Solution:
Edit the template and adjust the following till you succeed.
Use percentage rather than pixels for the main content. Use pixels for the sidebar.
@media all {
#content {
/*width:660px;*/
width:90%;
margin:0 auto;
padding:0;
text-align:left;
}
#main {
/*width:500px;*/
width:70%;
float:left;
}
#sidebar {
width:220px;
/*width:30%;*/
float:right;
}
}
Workaround:
Use firefox, a better choice.
© Copyright 2006. Bipin C Nair. All rights reserved.