Issue: Users of Shopify’s Dawn theme want to reposition the login/account button in the mobile menu drawer from its default bottom placement to the top.
Attempted Solutions:
Made4uo-Ribe provided CSS code targeting base.css to hide utility links and adjust account icon visibility using media queries for mobile screens (max-width: 749px). Initial code didn’t resolve the issue.
developerSP suggested removing CSS lines 441-445 from base.css that hide elements on mobile, then adding custom CSS to control menu utility links and account icon visibility.
Current Status: The discussion remains ongoing/unresolved. The original poster tried the first CSS solution without success. A second user (manan123) reported the same issue, indicating this is a common Dawn theme customization request. Multiple CSS approaches have been proposed but effectiveness hasn’t been confirmed. Screenshots were shared to illustrate the problem and desired outcome.
Summarized with AI on November 12.
AI used: claude-sonnet-4-5-20250929.
I’m using Dawn theme. I’m facing a problem with the Login button on mobile menu drawer. It appear at the bottom of the drawer. I want to place it at the top of the drawer, above the menu. Can anybody help me to dp that, please.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
And Save.
@media only screen and (max-width: 749px) {
a.header__icon.header__icon--account.link.focus-inset.small-hide {
visibility: visible;
}
.menu-drawer__utility-links {
display: none;
}
hey i’m also having same issue i am using dawn theme i want to shift that sign in option from footer in mobile menu drawer at the top , see screenshot for better understanding