Remove funny padding box with colour when adding "rich text"

Hey everyone,

I’m not sure how I have put these banners in, I’m just wanting them removed.

They appear in each rich text box I create

Shop: https://meeko-8476.myshopify.com

Password: Meeko

Hallo @meeko

You can add code by following these steps to change

  1. Go to Online Store → Theme → Edit code > assets > base.css

paste below code at bottom(base.css)

section#shopify-section-template–17647140798758__7c5eff5c-3748-4ce7-a1d0-fd634c6a77d8 {
display: none !important;
}

If you require any further information, feel free to contact me.

Best regards,

1 Like

Hi @meeko

  1. Go to your Store > Theme > click to edit code.
  2. find this file " base.css" and open.
  3. Paste the code at the end of the file.
.isolate .content-container {
    border: none !important;
}	
.rich-text__text.rte {
    padding-bottom: 1rem;
}

this idea helps you

1 Like

Hello @meeko

You can add code by following these steps to remove padding showing there

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.section-template--17647140798758__7c5eff5c-3748-4ce7-a1d0-fd634c6a77d8-padding{ display:inline !important; }

1 Like