Magento 2 – Add Navigation Menu Beside Logo in Header

luma-thememagento2

I use Magento2 with sample data Luma theme and I applied a new custom theme
Now I need to know the right way to add the navigation menu inside the header I want it between the logo and search box

Best Answer

You can try this,

You can move navigation menu using move element

add below lines to default.xml

<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout  /etc/page_configuration.xsd">
    <body>
        <move element="catalog.topnav" destination="header-wrapper" />
    </body>
</page>