How to remove shop now button on slideshows (theme: craft)

Topic summary

A user needed to remove the \

Summarized with AI on November 19. AI used: claude-sonnet-4-5-20250929.

Hello, my website is hormeclub.com and i am using the craft theme. I have a slideshow on my home page but there is a button under the image that says “shop now”. Is there any way i can have it removed?

example here:

1 Like

@Hormeclub - please add this css to the very end of your base.css file and check

#shopify-section-template--16289562558687__c85ee087-a809-491c-b924-0232fdb2913e .cta_text .a_cta{display:none; visibility:hidden;}
1 Like

Hi @Hormeclub

  1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
  2. Go to Asset folder and open the base.css file
  3. At very end of the code, add the code below
section#shopify-section-template--16289562558687__c85ee087-a809-491c-b924-0232fdb2913e .cta_text {
    display: none;
}

1 Like

Code worked! Thank you very much.

This code also works! Thank you for the work you do.

1 Like