Materialize icons not working

I’m trying to implement several materialize features in my meteor application, but the icons aren’t working. I’ve added materialize to the packages file, and everything seems to be working beside the icons.

I’ve added this from materialize here, and the icons are replaced with text. Any ideas?

Hi! In materialize.css, you need to load the icon’s from Google site as they said in the icon documentation:

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">

Did you add this in the header?

1 Like

Yeah, added the link in the header and now it works. thank a lot!