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 回答