How can I move the dropdown menu to the right on mobile view?

Hi, is there any way to move the dropdown menu on the mobile view to the right side? I appreciate the help! I’m currently using the dawn theme.

1 Like

Hi @Dat999

Try this one.

  • 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:
@media only screen and (max-width: 989px){
header.header.header--middle-left.header--mobile-left.page-width.header--has-menu.header--has-social.header--has-account.header--has-localizations {
    display: flex;
    justify-content: flex-end;
}
header-drawer {
    order: 3;
    margin-left: 10px;
}
h1.header__heading {
    margin-right: 55%;
}
}
@media only screen and (max-width: 750px){
    h1.header__heading {
    margin-right: 30%;
}
}
  • And Save.
  • I hoe it help.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!