Debut theme change color of slideshow button

I know this is an easy code change. I would like to change the color of my slideshow “SHOP” button to #2D3047.

www.coverandquill.com

Hi @coverandquill

Go to your theme.css file located inside Online Store → More Actions → Edit Code and add the following piece of code at the end of the file:

a.btn.slideshow__btn {
    background: #2D3047!important;
}

Don’t forget to like & mark as a solution our answer if it answers your query :wink:

Dear @coverandquill

Hope the following suggestions will help you

  • From your Shopify admin, go to Online Store > themes.
  • Locate your current theme and then click Actions > Edit code.
  • After that in the Assets folder, click to open your theme.scss.liquid file.
  • Go to the very bottom of this file and paste the following code:
/* Start */
.slideshow__btn {background-color: #2D3047 !important}
/* End*/
  • Save and check your theme by refreshing it.