Why can't customers see my checkout button on all views?

Hello,

I discovered while testing my page before launching that the checkout button is not in focus for any of the views (desktop, mobile, fullscreen). How do I adjust so that the customer can see the checkout button after they add the product to the cart?

1 Like

@dawgminded

Please share your store url so that I will check it.

Thank you

Sorry about that…

URL: dawgminded.com

password: audio

Hi @dawgminded

Seems like you added additional ‘margin-left’, which is causing the issue, If you get rid of the below itll solve the issue.

I suggest the element the below code is for, to direct that code to the specific element that needs the change. Right now .grid__item is used on multiple elements. So you need to be more specific.

1 Like

hello @dawgminded

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media only screen and (max-width: 789px){
.cart__footer .grid .grid__item{
	margin-left: 0px  !important;
}
}
1 Like

Thank you, that worked for the mobile view but the other views are still not showing the checkout button.

1 Like

hello @dawgminded

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media only screen and (min-width: 789px){
.cart__footer .grid .grid__item{
	margin-left: 20px  !important;
}
}
1 Like

Thank you!