.CSS使用Custom.css编辑菜单

时间:2017-07-17 16:08:50

标签: html css wordpress google-chrome

我想做的只是将我的菜单放在我的stie上。 当我添加:

.primary-menu { 
  float: none !important;
}

在我的custom.css

什么都没发生。

当我添加时:

.primary-menu { 
  float: right !important;
}

我的菜单正在移动到我页面的右侧。 (我无法访问文件,我只能在wordpress中使用custom.css)

我的网站:http://test.projekt-tenis.pl/wordpress/

和屏幕:

enter image description here

有人可以查看谷歌浏览器并告诉我应该添加到我的custom.css以便将此菜单置于中心位置吗?

1 个答案:

答案 0 :(得分:1)

不是<a>,而是<li>

.primary-menu {
  text-align: center;
  width: 100%;
}
.primary-menu .wbc_menu > li {
  display: inline-block;
  float: none;
}

现在在网站上,它看起来像:

preview

这是你需要的吗?