Magento 2 – Move Category Title Above Products Column

layoutmagento2template

In Blank theme the category name is located to the left just above the layered navigation sidebar.
I'd like to move the category name to the right, above the products column, so the side bar goes up.

Best Answer

  1. In the folder vendor/magento/module-catalog/view/frontend/layout/ is the file catalog_category_view.xml.

  2. Copy this file to your own theme folder or module folder (if you dont know how to create a theme or a module take a look in the devdocs from Magento).

  3. Add following line at the end of that file before the closing body tag

<move element="page.main.title" destination="content" before="category.products"/>