Remove line in footer

Hi All, I have a very fine white line showing in my footer, can this be removed? URL: https://houseofluxuryuk.com/

Password: 123456

thank you

Hey @DASCPA

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hi @DASCPA

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
.footer__content-bottom {
border-top: none!important;
}

Hello @DASCPA , Please follow these steps to add this CSS code:

  1. Go to your Online Store
  2. Click on “Themes”
  3. Select “Edit code”
  4. Open your CSS file. open “section-footer.css”.
  5. Add the following code at the that of the file.

Search the class “.footer__content-bottom” which contains below CSS and update it.

.footer__content-bottom {
  border-top: solid 0.1rem rgba(var(--color-foreground), 0.08); /* comment or remove this line of code*/
  border-top: unset; /* add this new line of code*/
  padding-top: 3rem;
}

Feel free to reach out if you have any questions or need assistance.
Best Regards,
DWS.