Hello,
It is Definitely Possible to use Custom Icons and Canvas is completely compatible with this. We have just checked out your Website and the reason why this is not working for you is the following code inside the css/flaticon.css File:
[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after {
font-family: Flaticon;
font-size: 20px;
font-style: normal;
margin-left: 20px;
}
Simply, remove the font-size: 20px; and margin-left: 20px; Code from the above File and this will automatically fix your issue. Example:
[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after {
font-family: 'Flaticon';
font-style: normal;
}
This will definitely work fine. Let us know if we can help you with anything else or if you find any further issues.