在wordpress中居中徽标

时间:2014-02-21 08:47:49

标签: css wordpress

我想将徽标转移到

的中心位置

This page!

我无法这样做。你可以指导我吗?这是专业教育主题。

3 个答案:

答案 0 :(得分:1)

只需在“style.css”文件中的徽标类中进行更改

.logo 
{
float: left;
margin-left: 38%;
}

答案 1 :(得分:0)

在style.css文件中尝试这个,

 .logo {
    margin: 0 auto;
    width: 200px;
    }

此处宽度是图像(徽标)的宽度。

答案 2 :(得分:0)

#header {
height: 66px;
padding: 20px 0;
margin: 0px auto;
text-align: center;
}

.logo {
float: left; // remove this 
}

屏幕截图:

enter image description here 做出以上改动有助于.. !! :)

快乐的编码.. !! :)

<强>编辑:

为明确的解释添加了屏幕截图

enter image description here

在您的Css搜索#header并添加下面的CSS

#header {
    height: 66px;
    padding: 20px 0;
    margin: 0px auto;
    text-align: center;
    }

enter image description here

在您的Css搜索.logo并删除以下CSS

<击>

<击>
.logo {
float: left; // remove this 
}

<击> enter image description here