Continue shopping button on cart page not centered

Hello all,

I have a small issue with the continue to shopping button when cart is empty (after deleting all items in cart)

Basically, is not centered and it moves when scrolling :disappointed_face:

website : www.hintofhappiness.com

password : seiyud

Any help is greatly appreciated ! Thanks in advance !

Karla

Hi @Karla8

Please add this code at the bottom of base.css in Online store > Themes > Edit code to solve the issue

.cart__warnings .button { position: relative !important; }

1 Like

Hey @Karla8

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

You are a life saver ! thanks a lot ! I spent hours yesterday haha

1 Like

Hi,

To solved this issues, you can follow steps:

Admin->Theme->Customize Code->assets->base.css

then add code bellow into that file:

.cart__warnings a.button{
   position: unset;
}

Happy I could help :blush: !