How can I remove image sections in Debut theme?

Hi

Hoping someone here could give me a hand with this:

I use the debut theme and I’m looking for a way to create two columns with header, text, and CTA button, the closest I get to achieving this is using images with text.. but then I also get images, which I don’t want.

is there a way to remove these pictures (only for that section) or is there another way to fix 2 columns with text and CTA buttons?

thanks

www.cyturnstore.com

password: labrea

@Kofiem - please add this css to your css file and check

#shopify-section-feature-columns .placeholder-svg{display: none;  visibility: hidden;}
2 Likes

hello @Kofiem

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

#shopify-section-feature-columns .placeholder-svg{display: none;  }
2 Likes

Thank you @suyash1 , worked perfectly!

do you also know a way to center the text in each column?

@Kofiem - try this css, actually you should have that option in customizer, but you can use this css too

#shopify-section-feature-columns p{text-align: center;}

#shopify-section-feature-columns .grid__item{text-align: center !important;}
2 Likes