Contact page menu on the header next to bag

I’d like to put my contact page menu next to the bag, on the right, instead of in the left alongside my other menus.

How can i do this?

url www.joanadarq.com

theme is dawn.

Thanks!

how it is currently:

how i want it:

Hi,

To move the contact us menu to the right, please go to Edit code > Assets > base.css file.

At the end of the base.css file, please add the code below.

@media (min-width: 768px) {
  .list-menu--inline>li:last-child {
    position: absolute;
    right: 90px;
  }
}

Hope it helps.

Thanks.

1 Like

Thank you!!!