Topic summary
A user encountered an unwanted small dot appearing in their Shopify store’s footer policies section, as shown in an attached screenshot.
Solution Provided:
- Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
- Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
- Add the following CSS code at the bottom:
.footer__copyright .policies li:before {
content: '';
}
- Save the changes
Outcome:
The solution successfully removed the dot from the footer. The user confirmed it worked and expressed gratitude for the help.
Hi @TheDuckDuck
Try 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 “base.css, style.css or theme.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:
.footer__copyright .policies li:before {
content: '';
}
-
And Save.
-
Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
1 Like
This removed all the dots which looks way better! Thank you so much!

