Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
I'm using Dawn 2.0 theme and somehow on my blog post the numbers of the ordered list does not show. If I force refresh sometimes they show up for 1 millisecond and then disappear. i have tried adding colors to the article template, global CSS for <ol> but nothing seems to work. maybe someone has an idea where to look for?
like this but there are no numbers, the space is there where the numbers should be
Solved! Go to the solution
This is an accepted solution.
for those still looking for an answer:
i added this code to the base.css in my theme
.article-template ol li {
list-style: unset !important;
}
.article-template ul li {
list-style: unset !important;
}
This is an accepted solution.
for those still looking for an answer:
i added this code to the base.css in my theme
.article-template ol li {
list-style: unset !important;
}
.article-template ul li {
list-style: unset !important;
}