Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
Please help me 😊
Inspect image in browser DevTools. If it's just a plain png - you can replace image on your server: just upload your new image with old name.
If you are not familiar with editing templates, the way is -> changing CSS (but it's a kind of "dirty hack"). Something like this:
.fas.fa-pen-square {
background: url('YOUR_IMAGE_FULL_PATH') no-repeat;
}
.fas.fa-pen-square::before {
content: "";
}
You should write mo specific selector to not affect the others icons of the same type. And I'm not sure about icon code `fa-pen-square`, this code only demonstrates the idea.Â
You shouldn't put anything into `content`