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
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
You could try adding this code to the bottom of section-footer.css
.footer__content-bottom {
border-top:none;
}
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,
.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:
Find the code below.
.footer__content-bottom{
border-top: none !important;
}
result:-
Hope this helps, let us know if you need any help.
Regards,
CedCommerce
This worked, thank you very much!