Motion Theme: Remove white line above email sign up

Hi all,
Here is my site url: https://www.huio.io/
I want to remove the white line that’s above the newsletter sign up section on my homepage.
It’s really annoying and I want it to either be black or removed entirely.

If anyone can help that would be great!

Hi @BejaySmith ,

You can try follow the instruction below:

  1. Go to Online Store → Theme → Edit code.
  2. Asset → /theme.css paste code below into end of the file.
  • If you want change to black color:
.newsletter-section--with-divider {
    border-top-color: #000 !important;
}

Or

.newsletter-section--with-divider {
    border-top-color: transparent !important;
}
  • If you want remove line:
.newsletter-section--with-divider {
    border-top: none !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Best regards.

1 Like

The middle one worked for me! Thank you!