Hi I would like to modify the unstyled list in my footer. I need to remove the inline left padding and the little marker. How can I do this?
Topic summary
A user seeks to remove inline left padding and list markers from an unstyled list in their website footer.
Solution provided:
- Navigate to Shopify admin → Online Store → Themes
- Click Actions → Edit code on the active theme
- Locate the main CSS file (base.css, style.css, or theme.css) in the Assets folder
- Add the following CSS at the bottom of the file:
ul.list-unstyled {
padding-left: 0px;
}
li::marker {
color: transparent;
}
- Save the changes
The CSS targets the unstyled list class to remove left padding and makes list markers transparent. A screenshot showing the expected result was included in the response.
1 Like
Hi @SIVA2020 ,
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:
- And Save.
li::marker {
color: transparent;
}
ul.list-unstyled {
padding-left: 0px;
}
Result:
I hope it help.

