如何在面板包装中显示我的徽标,而不是在Magento 2.3中显示实际位置?

时间:2019-02-18 08:02:10

标签: magento2

我想在面板包装中显示徽标,而不是在Magento 2.3中显示实际位置。 我怎样才能做到这一点? 像

enter image description here

代替

enter image description here

2 个答案:

答案 0 :(得分:0)

查找正在使用的标题样式并在其中编辑标题样式 app \ design \ frontend \\ market \ Magento_Theme \ templates \ html \ header-style。

在该文件中添加您的自定义html。

  echo $block->getChildHtml('logo_theme'); 

答案 1 :(得分:0)

您可以使用主题的 default.xml 文件将徽标移至 header.panel.wrapper

打开 app \ design \ frontend \ Vendor \ Themename \ Magento_Theme \ layout \ default.xml 文件,添加以下代码:

<move element="logo" destination="header.panel.wrapper" before="-"/>

这会将徽标移动到“面板包装”类中。