Remove Featured Selection Title Box from Featured Selection Section

I am trying to remove the featured selection title box from the featured selection section (see image below). How do I make this box disappear? Any help is appreciated!


Page link: https://laface-skin-care.myshopify.com/?_ab=0&_fd=0&_sc=1&key=a2a35434a549b03ad233264794405b77106e714c7d9528442a82aae4c696697d

1 Like

@JS777

yes please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
.collection__cover {
    display: none;
}
1 Like

Thank you! This worked, but now there is an empty space where a product image should be on the right side of the section. Is there a way to remove the white space so it is replaced with a product?

1 Like

@JS777

yes please add this code also

#shopify-section-1620384496b3275614 .grid__item {
    clear: none;
}
1 Like

This worked perfectly. Thanks!

1 Like

@JS777

its my pleasure to help us

1 Like