Buy button on mobile version

Hi guys, I need help with my mobile version of shop. How can I remove or hide Buy button (PORUČI) from Homepage? I tried some of the codes that you already shared but it didn’t work. I attached PrtScn of my mobile home page.

hi @JohnnyBoss

Please share your store URL so we can check

Hello,

Please share “Store URL”

Thanks!

www.joleje.com

Hello @JohnnyBoss
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.

@media only screen and (min-width: 700px) {
#es-sticky {
display: none !important;
}

result

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

Hello @JohnnyBoss

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 (min-width:767px){ button#es-sticky { display: none !important; } }

Result:

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

It’s still there. :confused:

Can’t find base.css :thinking:

Sorry my mistake please remove the code and add this

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){ button#es-sticky { display: none !important; } }

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

1 Like

Great! :man_student: Thans a lot!

*Thanks

your Welcome! I’m thrilled to know you’re happy with the result.

1 Like

Hello, @JohnnyBoss

  1. Go to Online Store
  2. Edit Code
  3. Find theme.css/base.css file
  4. Add the following code in the bottom
button#es-sticky 
.es-button cart-shaker {
	display: none;
}

Thanks!