How to remove the pause feature from Studio theme?

Hey all,

I looked through most threads I could find that had to do with removing the pause feature on a few free themes but couldn’t find an answer for Studio theme. It seems the same file has to be modified across all of them but i still can’t figure it out.

The file most people say to modify is the “theme.css” or “theme.scss.liquid” file. Now, when I open the code for Studio, the only “theme.” file I have is theme.liquid and nothing else. I attempted to add the code I found to the beginning of that file or to the end of the file like suggested and nothing worked.

I want to keep the 3 dots and the arrows but I just want the pause button removed. Any help is appreciated. I’m sure it’s a simple fix but I can’t figure it out. Need your help shopify gurus! Thanks.

@Morlaco , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > base**.css** and paste this at the bottom of the file:
.slideshow__autoplay{
    display: none !important;
}

If it helps you please click on the “like” button and mark this answer as a solution!

Thank you.

Kind regards,
Diego

That did the trick!! I figured it was something simple. Thanks Diego!