Magento – Magento 2 – How to change position of Sign in and My Account link

linkmagento-2.1magento2moduletoplinks

How can i move account creation link and sign in link after the search box.

Need Help

enter image description here

Best Answer

You can edit by layout like this way. Add this code below inside body tag in default.xml layout

 <referenceBlock name="authorization-link-login" remove="true" /> 

 <referenceContainer name="header-wrapper">
    <container name="sign-in-div" htmlTag="div" htmlClass="signin-wrap" after="logo">
        <block class="Magento\Customer\Block\Account\AuthorizationLink" name="authorization-link-custom" template="Magento_Theme::account/link/authorization.phtml" />
    </container>
 </referenceContainer>

file template account/link/authorization.phtml copy in Magento_Customer to your theme or module for apply new template