Almada
December 30, 2021, 9:05am
1
Any tips, how to adjust the footer border width? It’s now full width, but I would like it to be as same width as the other sections above. I’m now using the code:
/footer border /
footer.site-footer{
border-top: 1px solid black;
}
in my theme.css.liquid since the border was not included by default in the theme. The theme I’m using is Motion.
Hello There,
Please share your store URL and Screenshot.
So that I will check and let you know the exact solution here.
@Almada
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community!
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
Almada
December 30, 2021, 10:16am
4
This problem is with unpublished theme with the theme Motion by Archetype.
Url is almadalabel.com with the old theme, if it helps.
@Almada
can you share your preview url is this now
Almada
December 30, 2021, 11:06am
7
Hello
1.In your Shopify Admin go to online store > themes > actions > edit code
2.Find Asset >theme.scss.css and paste this at the bottom of the file:
footer.site-footer {
border-top: 0;
padding-top: 0;
}
footer.site-footer .grid {
border-top: 1px solid #000000;
padding-top: 80px;
}
@Almada
try this code
Go to Online Store->Theme->Edit code
Asset->/theme.css ->paste below code at the bottom of the file.
footer.site-footer {
border-top: none;
padding-top: 0;
}
footer.site-footer .page-width {
border-top: 1px solid #dddddd;
padding-top: 80px;
}