如何解决这个Wordpress徽标位置

时间:2013-09-21 13:14:31

标签: css

如何将网站标题定位到页面中心?我试过这个:

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

但没有希望。那么如何将我的徽标移动到中心? http://worldsocialnetworking.com/

1 个答案:

答案 0 :(得分:1)

要设置徽标中心,请将text-align: center;放入CSS中的这一行:

#top {
    padding-bottom: 5px;
    position: relative;
    text-align: center; // Add this for center the Logo
}