How to move my cart and menu

I want to move my cart to the far right of the screen and move my profile button to the far left. I would also like to make the buttons a bit bigger please.

my URL - https://7d1dw0-pw.myshopify.com/

if someone could help that would be great

1 Like

Hi @baileyhxrris ,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

@media (min-width: 769px){
a.header__icon.header__icon--account.link.focus-inset.small-hide {
    position: absolute !important;
    left: 16px;
}
}

Hi @baileyhxrris

TRy this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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 (min-width: 989px){
header.header {
    max-width: 100% !important;
}

a.header__icon.header__icon--account.link.focus-inset.small-hide {
    position: absolute;
    left: 0;
    padding-left: 6rem;
}
.header__icon .svg-wrapper {
    scale: 1.4;
}
}

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