Remove black line in footer - Crave theme

I cannot figure out how to remove this black line at the top of our footer, please someone help!

1 Like

Hey @Artyboy

Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.

Best Regards,
Moeed

Hello there @Artyboy try the following steps and I believe the black line would be removed

1) Go to Online Store->Theme->Edit code.

2) Search file base.css

**3)**Paste the below code at bottom of the file → Save

.footer__content-bottom {

border-top: unset !important;

padding-top: 0 !important;

}

.footer__content-top {

padding-bottom: 0 !important;

}

.footer-block–newsletter {

margin-top: 0 !important;

}

.footer-block__image-wrapper.global-media-settings {

border: none !important;

}

let me know if this works for you!

Hi @Artyboy

PLease, share your store URL. Thanks!

www.artyboy.co.uk

Thanks but this didn’t remove the line I was looking to remove.

www.artyboy.co.uk

Thanks for the info try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.shopify-section.shopify-section-group-footer-group.section .content-container:after {
     box-shadow: none !important;
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

1 Like

Awesome, this worked! Thank you for your help, much appreciated!

1 Like