1

I want to display my logo in panel wrapper instead of actual position in Magento 2.3. How can I do that? Something like

enter image description here

instead of

enter image description here

L. F.
  • 19,445
  • 8
  • 48
  • 82
somutesting
  • 289
  • 1
  • 5
  • 17

2 Answers2

0

Find which header style your are using and edit your header style in app\design\frontend\\market\Magento_Theme\templates\html\header-style.

Add your custom html in that file.

  echo $block->getChildHtml('logo_theme'); 
soofz
  • 26
  • 4
0

You can move logo to header.panel.wrapper using your theme's default.xml file.

Open app\design\frontend\Vendor\Themename\Magento_Theme\layout\default.xml file add below code:

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

This will move logo inside "panel wrapper" class.