How can I remove the arrows under the collection?

I have seen many other code examples how I can add it in the base.css, unfortunately it did not work.

How do I remove these?

Hello @viccre
Can you share store URL?

My computer is having trouble inserting the link… This is the Refresh Theme. Sorry about that!

1 Like

Hi @viccre ,

Please go to your Online Store > Themes > Customize and add this code to the Custom CSS of that section.

.slider-buttons { display: none; }

Best Regards,

Dan from Ryviu

1 Like

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

button.slider-button { display: none !important; }

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

Hi @viccre

  1. In your Shopify Admin, go to Online Store > Themes > Customize.
  2. Select Home page > Featured collection, and uncheck "Enable swipe on mobile.

Screenshot: https://prnt.sc/yI_W4KTd6TyP

That worked. Thank you!