Hello,
Is there any way to add an escape character in the skin editor CSS in Essential Grid? Backslashes seem to be removed from the rendered code.
Here is what I would like to accomplish:
My CSS added in skin editor
.my-class::before {
content: ‘\e80a’;
}
And here is the rendered result:
Rendered CSS
.my-class::before {
content: ‘e80a’;
}
Thank you,
Andrew