Move Mini Cart in Magento 2.2.3

magento2

I'm trying to move the cart next to the search bar here but it isn't working.

enter image description here

A user has asked the same question here:

Move Mini Cart (Magento 2)

When I put in

<move element="minicart" destination="header.container" before="-" />

or

    <move element="minicart" destination="header.panel" after="top.search" />

My cart ends up in the top right corner on the first code and on the second one, it disappears.

Code:

code

I have moved my search bar by adding the below to default.xml:

        <move element="top.search" destination="header-wrapper" after="logo" />

Best Answer

You can try below code

<move element="minicart" destination="header-wrapper" after="top.search"/>
Related Topic