0

これが私のTumblrテーマです。

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

Internet Explorer で確認したところ、コンテンツがサイドバーの上に浮かんでいます。とにかく私はそれを修正することができますか?

これがコンテンツセクション用のCSSです。

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

1 に答える 1

0

私は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*/
}
于 2013-04-04T17:17:54.173 に答える