Use a Custom Icon in Card
If you have created icons and would like to use these custom icons on a few cards' this is a solution.
Step 1
Find the component ID of your card.
Step 2
Add the following code to the JavaScript tab of your page.
TB.render('component_3',function(data){
setTimeout(function(){
if(!data.ele.find('.custom-icon').length){
data.ele.find('.af-card-component .con').prepend('<img class="custom-icon" src="https://community.tadabase.io/uploads/default/original/2X/f/f21ff3d03ee2bfaa679e94b5bf2299f47a8f82cc.png">');
}
},100);
});
Remember to change the component Id to the ID you found in step 1. Next, you will need to edit the image source to your image link address.
We'd love to hear your feedback.