簡體   English   中英

Avada主題,Wordpress,標題徽標自定義,

[英]Avada theme, Wordpress, Header Logo 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

使用!重要

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;
}

在您的后端中,轉到外觀 > 主題選項 > 徽標 ,您將在其中找到與徽標相關的所有選項(包括邊距)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM