Screenshot of the bottom of a slideshow, with the navigation symbols circled.

How to customize slideshow icons

In the Shopify site customizer, I found the options for editing slideshows were limited. The slideshow navigation icons did not respond to changes in theme colors, and were hard to see on my theme's background.

First navigate to the Online Store/Themes page from your side-menu, and select the three-dots menu next to the "customize" button. Select "Edit code."

Screenshot of the main Online Store landing page on shopify, with an oval and arrow indicating the "Themes" page and the menu allowing more actions for your store theme. In that menu, "Edit code" is circled.

These icons are called the "slider buttons" and are part of the "slider counter" so you need to find your assets/component-slider.css file.

Screenshot of the code directory, with the assets folder open and file 'component-slider' selected

You can customize the slideshow slider feature in this file. The colors #000000 and rgb(0,0,0) are a placeholder for your color preference. 

If you have the slideshow style COUNTER

  • Insert the final line into this section: .slider-counter {
    display: flex;
    justify-content: center;
    min-width: 4.4rem;
    color: rgb(0,0,0); < insert this line
    }

If you have the slideshow style NUMBERS

  • To change the color of the selected number, find: .slider-counter__link--active.slider-counter__link--numbers {
    text-decoration: underline;
    color: rgb(var(--color-foreground)); 
    < replace line with color: rgb(0,0,0);
    }
  • To change the color of the unselected numbers, find: .slider-counter__link--numbers {
    color: rgba(var(--color-foreground), 0.5); < replace line with color: rgb(0,0,0);
    text-decoration: none;
    }
  • To change the color of the unselected numbers when you hover over them, find: .slider-counter__link--numbers:hover {
    color: rgb(var(--color-foreground)); 
    < replace line with color: rgb(0,0,0);
    }

If you have the slideshow style DOTS

  • To change the fill color of the selected dot, find: .slider-counter__link--active.slider-counter__link--dots .dot {background-color: #000000;} 
  • To change the border color of the unselected dots, find: .slider-counter__link--dots .dot {
    width: 1rem;
    height: 1rem;
    transform: scale(1.5);
    < I added this line to make them more visible!
    border-radius: 50%;
    border: 0.1rem solid rgb(0,0,0);
    padding: 0;
    display: block;
    }
  • To change the border color of the unselected dots when you hover over them, find: .slider-counter__link--dots:not(.slider-counter__link--active):hover .dot {border-color: #000000;}

Left/right 'caret' buttons

  • Find: .slider-button {
    color: rgba(var(--color-foreground), 0.75);
    < replace line with color: rgb(0,0,0);
    background: transparent;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.5);
    < I added this line to make them more visible!
    }

How to find this if your template is different

If you are using a different Shopify template, the same code tricks should work but these elements may have different names or be hidden in different files. First right-click a page with a slideshow on it and select "View Page Source."

CTRL + F "slideshow" to find the section of code for the slideshow. For me, the answer was in the line below the first instance of "slideshow" in the code. The file assets/component-slider.css is identified in line 2469; in the code library I was able to find the file "component-slider" under the folder "assets." (The file identified in line 2470 is similarly where you want to look to edit slideshow features).

<main id="MainContent" class="content-for-layout focus-none" role="main" tabindex="-1">       <section id="shopify-section-template--16733152936087__slideshow_WzcLJk" class="shopify-section section"><link href="//prettyuglythingsaz.com/cdn/shop/t/2/assets/section-image-banner.css?v=104371272348087278231711057204" rel="stylesheet" type="text/css" media="all" /> <link href="//prettyuglythingsaz.com/cdn/shop/t/2/assets/component-slider.css?v=10083066762069623321726184482" rel="stylesheet" type="text/css" media="all" /> <link href="//prettyuglythingsaz.com/cdn/shop/t/2/assets/component-slideshow.css?v=91051007432590186401726184155" rel="stylesheet" type="text/css" media="all" /> <slideshow-component   class="slider-mobile-gutter"   role="region"   aria-roledescription="Carousel"   aria-label="Slideshow about our brand" ><div     class="slideshow banner banner--small grid grid--1-col slider slider--everywhere"     id="Slider-template--16733152936087__slideshow_WzcLJk"     aria-live="polite"     aria-atomic="true"     data-autoplay="false"     data-speed="5"
Comparing the page source and code file should help you to find the terms for the features you want to edit in that file.
Back to blog