Question

I want to add add-to-cart and Wishlist under catalog.topnav ( Menu ) how to add right below menu bar.

enter image description here

Was it helpful?

Solution

You just need to move minicart to catalog.topnav use :

<move element="minicart" destination="catalog.topnav"/>

at

app/design/frontend/{Packgae}/{theme}/Magento_Theme/layout/default.xml

enter image description here

Update I:

If you want minicart below nav you need to create a custom container and need to move it, like:

    <referenceContainer name="page.top">
        <container name="test" htmlTag="div" htmlClass="test-class" after="navigation.sections"/>
    </referenceContainer>
    <move element="minicart" destination="test"/>

enter image description here

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top