How can I move the prestige button location on my cart page?

Hello,

Anyone knows how can I change the location of the button? I don’t know why but it supposed to be on the right, however it is on the left.

I want to put it on the right, below price.

Appreciate it,

Thanks

Panos

1 Like

@panos_my

sorry for any issue can you please share store url please?

Hello, sure.

https://www.prosleep.gr/

Thanks

1 Like

@panos_my

thanks for url can you please tyr this url

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
span.Cart__Total.Heading.u-h6 {
    display: block;
}
.Cart--expanded .Cart__Checkout {
    width: auto;
    float: right;
    clear: both;
}

Hi,

Thanks a lot for your time!

It works on desktop view but it affected the mobile.

On mobile it used to look like this (which is optimal):

And now it looks like this:

Can we resolve this?

Again, thanks for your time!

1 Like

@panos_my

yes please add this code

@media screen and (min-width: 641px) {
span.Cart__Total.Heading.u-h6 {
    display: block;
}
.Cart--expanded .Cart__Checkout {
    width: auto;
    float: right;
    clear: both;
}
}

@KetanKumar

It works!

Thanks a lot!!

1 Like

@panos_my

its my pleasure to help us