Wordpress CSS - 可能是一个非常好的解决方案

时间:2014-01-09 14:44:46

标签: html css wordpress header graphical-logo

我在my Wordpress site上遇到标题(徽标)问题。

基本上我希望徽标位于导航菜单上方,然后导航菜单居中。

我尝试了各种不同的方法,包括边距等。这是我目前的代码。

/*--HEADER MENU--*/
.userMenu {
    font-weight: bold;
    height: 40px;
    position: absolute;
    right: 30%;
    margin: -20px 0 0 0;
    display: inline-block;
    font-size: 12px;
    list-style: none;
}

2 个答案:

答案 0 :(得分:1)

我玩了一下。下一步应该解决你的问题。

  • 删除max-height
  • 上的#header
  • text-align: center;
  • 上添加#topBar

答案 1 :(得分:0)

试试这个:

#topBar #logo {
 color: #5B5B5B;
 display: block;
 font-size: 32px;
 line-height: 1em;
}

.userMenu {
 font-size: 12px;
 font-weight: bold;
 list-style: none outside none;
 text-align: center;
}