how to hide mobile display in buy now button is hide

our website in buy now button show i want to requested this buy now button in hide only mobile device

is this possible?

in this case is possible to help in this case

HEllo @zelzis
Go to online store ----> themes ----> actions ----> edit code---->base.css
add this code at the end of the file.

#gokwik-buy-now {
display: none !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

Hello @zelzis

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

@media screen and (max-width: 767px){ .productView-groupBottom { display: none !important; } }

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

this are work but i also remove add to cart button in mobile device please check and help in this case

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

@media screen and (max-width: 767px){ .product-form__buttons { display: none !important; } }

my reply helpful? Click Like to let me know!
your question answered? Mark MY Both Solutions as an Accepted Solution.

i want two code apply but add to cart button is not remove in mobile device please ceheck any update for this case