How can I remove an unwanted white bar from my website's theme?

Hi there. I am looking for assistance in removing this white bar beneath our Hero (Optional Slideshow) section and our Rich Text section. The theme is New and the link is: https://www.cocoandcobakery.com

1 Like

Hi @RLopez

This is Victor from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


Hope this can help you solve the issue

Best regards,

Victor | PageFly

1 Like

Hello @RLopez ,

You can try to follow these steps:

Go to Online Store → Theme → Actions → Edit code

Go to theme.liquid file → add the following code above the tag


Save and preview.

Let us know if you need any further support.

Ali Reviews team.

Please add below css code at bottom of assets/theme.css file

div#shopify-section-template–18297542803739__rich-text {
margin: 0 !important;

}
Thank you.

Hello @RLopez

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.

div#shopify-section-template--18297542803739__rich-text.index-section {
    margin-top: 0 !important;
}

Worked Perfectly! Thank you so much.

This didn’t work for me. I tried several times, are there any other solutions?