Hello, I want to remove the bullet points between my shop policies in the footer but have no idea how or what code to use.
Right now it looks like this
2024, Shop Name • Privacy • Terms • Contact
I want it to look like this
2024, Shop Name Privacy Terms Contact
1 Like
Hi @adxnponc3
Would you midn to share your store URL? Thanks!
Thanks for the info, Check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “Section-Footer.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.policies li:before {
content: '';
position: absolute;
}
.policies li {
padding: 0 5px;
text-transform: capitalize;
}
AndSave.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like