Avada主题,Wordpress,Header徽标定制,

时间:2014-10-18 05:15:03

标签: css wordpress menu themes customization

我遇到了WordPress Avada主题的问题,我无法解决自己。 我需要在菜单中有这样的标识:

body #header-sticky .logo, #header .logo {
margin-right: 0px;
margin-top: 20px;
margin-left: 0px;
margin-bottom: 16px;
}

但有些东西会将其覆盖为:

element.style {
margin-right: 0px;
margin-top: 31px;
margin-left: 0px;
margin-bottom: 31px;
}

我不知道我的style.css是什么

我找不到修改主题产生的最终HTML文件的位置,有谁知道如何实现这一点?

NinjaMate.com

2 个答案:

答案 0 :(得分:1)

使用!important

body #header-sticky .logo, #header .logo {
  margin-right: 0px !important;
  margin-top: 20px !important;
  margin-left: 0px !important;
  margin-bottom: 16px !important;
}

或使用简写css

body #header-sticky .logo, #header .logo { 
  margin: 20px 0px 16px !important;
}

答案 1 :(得分:0)

在你的后端转到外观> 主题选项> 徽标,您可以找到与徽标相关的所有选项(包括保证金)