Magento2 Layout XML – How to Move Notification Message to Top of the Page for All Pages

layoutmagento2messagessuccess-messagexml

I am trying to move all notification message on the top below header(or any specific location)

I followed this link but this only achieve top for customer page only

Magento 2: Change message location

So that means to place message at the top (below header) i have to each and every xml file of every module?

Is there any shorthand for the same, for all pages.

Best Answer

Add this in default.xml in the below path

app/code/vendor/module/view/frontend/layout/default.xml

or

app/design/frontend/vendor/theme-name/Magento_Theme/layout/default.xml

default.xml will render in all the pages so it's an global declaration.

<?xml version="1.0"?>                                                     
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
    <move element="messages" destination="header.container" after='-' />
</body>                                                                  
</page>

Not tested try it and let me know.