答案 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="-"/>
这会将徽标移动到“面板包装”类中。