在我的Internet Explorer 9的Tumblr主题中,内容漂浮在侧边栏上方.我怎么才能解决这个问题呢?



这是我的Tumblr主题

http://lt-chocolate.tumblr.com/

我在ie浏览器上检查了一下,内容漂浮在侧边栏上方。我有什么办法能修好它吗?

这是我为内容部分设置的CSS:

#content {
background-color: #F2EBD9;
float: right;
width: 1200px;
height: 100%;
margin-right: 25px;
position: relative;
bottom: 296px;
clear: both;
}

我在firebug中尝试了这个,它为我工作

#sidebar {
    float: left;
    position: relative;
    margin-top: 30px;
    width: 350px;/*change this size to your needs*/
}
#content {
    background-color: #F2EBD9;
    float: left;
    margin-right: 25px;
    position: relative;
    width: 800px;/*change this size to your needs*/
}