May 30, 2023 3:50 pm
Hello, I would like to change the icons of the member's activity page to replace them with my personalized images, how to do it please? Cordially
8 Replies
May 31, 2023 4:02 pm
Please help me 😊
May 31, 2023 4:58 pm
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.
Jun 01, 2023 8:49 am
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.
Jun 03, 2023 3:15 pm
You shouldn't put anything into `content`
Page 1 / 2
Next