How to move dropdown menu to the right and the logo all the way left

Hello, i am trying to find any tutorial on how i can move the drop menu

all the way to the right and my logo to the left

Hey @NHprpz ,

Can you share the link to your store please? Thanks!

https://www.norahpearls.shop/

Hey @NHprpz ,

Follow these instructions :blush:

Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.


Screenshot is for reference only, the correct code to paste is the one shown above.

Hey @NHprpz

Please add the below code to base.css file.

@media screen and (max-width:480px){
  .header{
    grid-template-areas: " heading icons left-icons";
  }
  header-drawer{
    padding-left: 15px;
  }
  .header__heading-link{
    padding-left: 0px;
  }
}

Thank you

try to use float

#logo {
float: left;
}

#dropdown-menu {
float: right;
}