0

サイトのタイトルをページの中央に配置するにはどうすればよいですか? 私はこれを試しました:

#site-title{
    display:inline-block!important;
    max-width:74%;
        margin: 0 auto;
}

しかし、希望はありません。どうすればロゴを中央に移動できますか? http://worldsocialnetworking.com/

4

1 に答える 1

1

ロゴの中心を設定するtext-align: center;には、CSS に次の行を追加します。

#top {
    padding-bottom: 5px;
    position: relative;
    text-align: center; // Add this for center the Logo
}
于 2013-09-21T13:29:15.973 に答える