How can I shift my menu bar to the right?

site: https://atlkickswarehouse.myshopify.com/

pw:josh

1 Like

there is no theme.scss file in my asset folder

Hi @atlkicks ,

I’m Victor Nguyen from PageFly.

You can go to Online store => themes => actions => edit code and add this code on file base.css

@media only screen and (min-width: 750px){

   nav #SiteNav {

    position: absolute;

    right: 96px;

    top: 30px;

   }

}

Hope this answer helps.

Best regards,

Victor | PageFly

Hello Victor, unfortunately this solution did not work for me.

Hello @atlkicks

You can follow these steps:

  1. Go to Online Store->Theme->Edit code
  2. Open your theme.liquid file, paste the below code before

I hope the above is useful to you.

Kind & Best regards,
GemPages Support Team

Hi @atlkicks ,

You can try this code

@media only screen and (min-width: 750px){

   header.header.header--top-left.header--mobile-left.page-width.header--has-menu{
      display: flex !important;

        justify-content: space-around !important;
}
header-drawer{
order: 4 !important;
}
}