Bulma icon not showing up?

14,056

You also need to include the bulma.min.css file, not just the .map.

Edit

Per the Bulma docs:

If you want to use icons with Bulma, don't forget to include Font Awesome:

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">

Update 3/19/2019

As @Akshay has pointed out below, the documentation has changed and the proper way to include Font Awesome is now

<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
Share:
14,056
Psidom
Author by

Psidom

Making the PyConsole extension to run numpy &amp; pandas in the browser without a server :) Chrome Web Store Firefox Add Ons Chrome user can also install the PWA app, which works identically as the extensions.

Updated on June 03, 2022

Comments

  • Psidom
    Psidom almost 2 years

    I am trying to use bulma icons following the docs here, but the icon doesn't show up:

    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.1/css/bulma.min.css">
     
     <div>
      <span class="icon">
        <i class="fa fa-home"></i>
      </span>
      <span>ICON</span>
     </div>

    Also see the fiddle here, what could be the problem?

  • Akshay Khale
    Akshay Khale about 5 years
    Above solution did not work for me, but based on Bulma Docs, I added <script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js">‌​</script> and it is working now!!!