How can I remove an unwanted white box with a thin line from my website?

Solved

How can I remove an unwanted white box with a thin line from my website?

RLopez
Excursionist
30 0 4

Hi there! On our site, we encountered a section that contains an empty white rectangular space with a line in it. We do not know how to change it but would like it removed (both the box and the line). Any suggestions would be greatly appreciated.

Link: www.cocoandcobakery.com

Theme: New

 

 

Screenshot 2023-04-24 164240.jpg

Accepted Solution (1)

PageFly-Richard
Shopify Partner
5011 1120 1803

This is an accepted solution.

Hi @RLopez , This is Richard from PageFly - Landing page builder.

You can try this code by following these steps:

Go to Online store => themes => actions => edit code  and add this code on file theme.liquid before tag </body>

 

PageFlyRichard_0-1682388252974.png

 

 

 

<style>
div#shopify-section-template--18297542803739__a8394058-38ab-4b46-b748-172fbf6a79b3 {

    margin-bottom: 0;

}
</style>

 

 

I hope it would help you Best regards, 

 

Richard | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 10 (10)

made4Uo
Shopify Partner
3877 719 1231

Hi @RLopez,

 

I am not familiar with the New Theme but there might be an option using the theme editor to remove the line. If not, you can use the code below

 

1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
2. Go to Asset folder and open the theme.css file
3. At very end of the code, add the code below

.testimonials-section.testimonials-section--with-divider.text-center {
    border: none;
}

 

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free
RLopez
Excursionist
30 0 4

Thanks! This got rid of the line but I also used the other code responses to remove the white box that remained. Thank you nonetheless!

PageFly-Richard
Shopify Partner
5011 1120 1803

This is an accepted solution.

Hi @RLopez , This is Richard from PageFly - Landing page builder.

You can try this code by following these steps:

Go to Online store => themes => actions => edit code  and add this code on file theme.liquid before tag </body>

 

PageFlyRichard_0-1682388252974.png

 

 

 

<style>
div#shopify-section-template--18297542803739__a8394058-38ab-4b46-b748-172fbf6a79b3 {

    margin-bottom: 0;

}
</style>

 

 

I hope it would help you Best regards, 

 

Richard | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

RLopez
Excursionist
30 0 4

Thank you so much! This helped a lot!

irene-vintage
Shopify Partner
853 103 376

Hello @RLopez ,

 

You can try to follow these steps:

Go to Online Store -> Themes -> Actions -> Edit code 

Go to Assets folder -> base.css file -> add this following code at the bottom of page:

.process-steps {
  margin-bottom: 0;
}

Save and preview

 

Hope this can help you out. Let us know if you need any further support.

Ali Reviews team.

- Was my answer helpful? Please hit Like or Mark it as solution!
- Kudosi Product Reviews - The must-have Shopify app that empowers you to effortlessly collect, display, and manage product reviews.
- Start your FREE trial today!
RLopez
Excursionist
30 0 4

Thanks for the quick response!

INA_MSWEB
Shopify Partner
1281 144 168

Hi @RLopez 


I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.

Please add this css in your bottom of the theme.css file:

#shopify-section-template--18297542803739__7f556a8c-241e-478b-879e-783812ff623e .testimonials-section--with-divider {border-top: none !important;}

#shopify-section-template--18297542803739__a8394058-38ab-4b46-b748-172fbf6a79b3 {margin-bottom: 0 !important;}





Regards,

San

If it’s helpful to you, please mark it as a solution.  


Need Help with Shopify Design, Migration, Speed, or Custom tasks?  
email: hi@mswebdesigner.com
Try Our Conversion Booster app to get more sales | Connect Our Founder Linkedin

RLopez
Excursionist
30 0 4

Thanks for the suggestion!

oscprofessional
Shopify Partner
16374 2441 3189

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.

.testimonials-section--with-divider {
    border-top: none !important;
}
.testimonials-template--18297542803739__7f556a8c-241e-478b-879e-783812ff623e {
    padding: 0 !important;
}
Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...
RLopez
Excursionist
30 0 4

Thanks!