Viewing 2 replies - 1 through 2 (of 2 total)
  • He Brian, I’m not using this plugin, but to make font awesome icons bigger you have 2 options:

    1. via CSS

    – make all icons the same size:

    .fa {
        font-size: 3em;
    }

    – make your menu icons the same size, assuming your menu has class “menu”:

    .menu .fa {
        font-size: 3em;
    }

    2. using Font Awesome CSS: add an extra class, fa-2x, fa-3x, fa-4x, or fa-5x
    e.g.

    <i class="fa fa-camera-retro fa-2x"></i>
    <i class="fa fa-camera-retro fa-3x"></i>
    <i class="fa fa-camera-retro fa-4x"></i>
    <i class="fa fa-camera-retro fa-5x"></i>

    More examples can be found on the Font Awesome website.

    Thread Starter Anonymous User 14559358

    (@anonymized-14559358)

    Hey!

    Thanks for the info 🙂

    –Bri

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Making Icons Bigger’ is closed to new replies.