Hello,
One of my “shop now” buttons on my home page goes to a “page not found page” when its clicked on. I would like to just remove the button entirely. Do any of you know how to remove this button? Heres the website and its not the first “shop now” button, but as you scroll down its the second one that doesnt work.
https://camping-elava.myshopify.com/
Thanks!
@shaley93 - please check if that section has option to remove button from customizer, else add this css to your assets/styles.scss.liquid file.
#shopify-section-16101289534c7d5de4 .rich-text__text{display:none; visibility:hidden;}
@shaley93
Please add the following code at the bottom of your assets/styles.scss.liquid file.
#shopify-section-16101289534c7d5de4 .rich-text__text{display:none; visibility:hidden;}
Thanks!
Hii, @shaley93
Paste this code on top of the style.scss file.
#shopify-section-16101289534c7d5de4 .rich-text__text{
display:none !important;
visibility:hidden !important;
}
Thank You.