Can't use ::before inside {% style %} tag

I am trying to apply a style with the ::before selector but it seems shopify ignores this selector, i need to know what i am doing wrong.

{% style %}
ul.custom-list li::before {
content: ‘’,
position: absolute,
width: 25px;
height: 25px;
background-color: red;
top:0;
left:0;
}
{% endstyle %}

Thanks a lot in advanced!

You have syntax errors in your CSS:

content: '',
    position: absolute,

You used commas instead of semicolons, when removing these it works fine.

1 Like