What's your biggest current challenge? Have your say in Community Polls along the right column.

Remove arrows and counters from showing on a slideshow

Solved

Remove arrows and counters from showing on a slideshow

Hafez_Attire
Tourist
4 0 2

I am trying to remove everything within what I have highlighted in the red box.

 

I have checked many other answers and they just don't seem to be working for me.

 

the site is www.hafezattire.com

 

The attached screenshot is done with my laptop, but I don't want it to show on either desktop or mobile, (I don't know if that changes anything)

 

Any help is much appreciated, thanks in advance!

Hafez_Attire_1-1730931148940.png

 

 

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
9159 2184 2700

This is an accepted solution.

Hi @Hafez_Attire 

TRy this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

.slideshow__controls.slideshow__controls--top.slider-buttons {
    display: none !important;
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1730933684705.png

     

 

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

View solution in original post

Replies 6 (6)

Made4uo-Ribe
Shopify Partner
9159 2184 2700

This is an accepted solution.

Hi @Hafez_Attire 

TRy this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

.slideshow__controls.slideshow__controls--top.slider-buttons {
    display: none !important;
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1730933684705.png

     

 

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
Hafez_Attire
Tourist
4 0 2

Amazing thankyou for your help

Made4uo-Ribe
Shopify Partner
9159 2184 2700

Welcome! Would you mind hitting 'like' as well? Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

Techwolf
Shopify Partner
3 0 0

Hi @Hafez_Attire 

 

Add this css on your theme.css or base css file at the end of thie fle

 

.slideshow__controls.slideshow__controls--top.slider-buttons {
    display: none !important;
}

 

Result: download (5).png

Eric-HAN
Shopify Partner
263 29 27

Hi, there

EricHAN_0-1730968647096.png

add the above code to your theme.liquid or theme.css

button.slider-button.slider-button--next {
display: none;
}



button.slider-button.slider-button--prev {
display: none;
}

 

 

 

- Helpful? Please hit Like and mark it as a solution
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me    Buy Me A Coffee

Made4uo-Ribe
Shopify Partner
9159 2184 2700

Welcome! Would you mind hitting 'like' as well? Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.