How can I remove the arrows under the collection?

Solved

How can I remove the arrows under the collection?

viccre
Tourist
11 0 2

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?

viccre_0-1716361471950.png

 

Accepted Solution (1)

Dan-From-Ryviu
Shopify Partner
11360 2225 2399

This is an accepted solution.

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; }

Screenshot 2024-05-22 at 14.15.14.png

Best Regards,

Dan from Ryviu 

 

- Found this helpful? Hit "Like" and "Accept as Solution"!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

View solution in original post

Replies 6 (6)

niraj_patel
Shopify Partner
2391 516 515

Hello @viccre 
Can you share store URL?

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
viccre
Tourist
11 0 2

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

niraj_patel
Shopify Partner
2391 516 515

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 </body> on theme.liquid
<style>
 button.slider-button {
    display: none !important;
 }
</style>
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
ZestardTech
Shopify Partner
6096 1091 1465

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

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing

Dan-From-Ryviu
Shopify Partner
11360 2225 2399

This is an accepted solution.

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; }

Screenshot 2024-05-22 at 14.15.14.png

Best Regards,

Dan from Ryviu 

 

- Found this helpful? Hit "Like" and "Accept as Solution"!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

viccre
Tourist
11 0 2

That worked. Thank you!