Remove arrows and counters from showing on a slideshow

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!

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

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

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:

Hi, there

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

Welcome! Would you mind hitting ‘like’ as well? Thanks!

Amazing thankyou for your help

Welcome! Would you mind hitting ‘like’ as well? Thanks!