How can I remove content warning messages from multiple sections of my website?

Hello,

I removed a few sections that I will no longer use on my Shopify website and received this message in 3 different areas…This section doesn’t currently include any content. Add content to this section using the sidebar.

I need to know how to permanently remove this message in 3 different sections please.

This method…

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

…only works to remove 1 message, it will not remove the other 2 messages in different sections. Can someone please tell me how to remove this message in all sections of my website. Customers can see this message as well. If you go to www.unlimitedlyfestylez.com you can see exactly what I’m talking about.

Thank you!

@Unlimited_Lyfe

Try following CSS code:

#shopify-section-1525912530555, #shopify-section-163843124877001665, #shopify-section-16386000233ca8d4b7{display:none;}

Thank you so much! It worked.