Can anyone help hide a grey border in the Dawn Theme?

Hello,

Wondering if anyone knows how I can hide this grey border on my website. I don’t have the option to hide it in the color section.

My website is fracture-usa.com

password = wildwest

1 Like

You could try adding this code to the bottom of section-footer.css

.footer__content-bottom {
  border-top:none;
}
1 Like

Hi @rchmndfrctre ,

This is PageFly - Advanced Page Builder.

You can try with this code:

Follow this:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.css.

Step 3: paste below code in bottom of file → save.

.footer__content-bottom {

border-top: unset !important;

}

Hope that my solution works for you.

Best regards,

PageFly

Hello There,

  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: unset;
}

Hello @rchmndfrctre ,

To get this fixed, you need to add the below code at the end of your assets/base.css file:

  • Go to Online store ➝ Select theme ➝ Click on actions
  • Edit code ➝ Open base.css from the assets folder
  • Add the below code at the end of the file
  • Save the changes and check

Find the code below.

.footer__content-bottom{

border-top: none !important;

}

result:-

Cedcommerce_0-1668834590380.png

image.png

Hope this helps, let us know if you need any help.

Regards,

CedCommerce

This worked, thank you very much!