Remove top separator line for footer

hello, i would like to remove the top separator line for my footer:

my store is www.antico-abito.com , theme is dawn

@ads18922

I didn’t get that line above the footer. Did you removed ?

it is there, you just cant see it because of the blue footer (in my example image i changed the footer background to white, so you could see it)

Hi there,

You can remove the top separator line from your footer in Dawn with a small CSS tweak. Here’s how:

  1. Go to Online Store > Themes > Customize

  2. In the left panel, scroll down and click Theme settings

  3. Open Custom CSS (or if your theme doesn’t have that option, go to Edit code)

  4. Add this CSS:

.footer {
  border-top: none !important;
}

If your theme version uses a wrapper, this will work instead:

.footer__content-top {
  border-top: none !important;
}

  1. Save, then refresh your storefront — the top separator line will be gone.

That should remove it cleanly. If it doesn’t, let me know which version of Dawn you’re using, and I can help you adjust the code.

Best,
MasterA

@ads18922

Still can’t see. I think you solved the issue, right?

Hi @ads18922 ,
I tried changing the footer background to white in order to reproduce your issue, but I couldn’t see the separator line. Have you already managed to fix the problem on your end?