MyBB Community Forums

Full Version: How to use Font-awsome icons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How would I use: http://fortawesome.github.io/Font-Awesome/icons/ on the default MyBB theme?

Cheers.
first include the FA css using the CDN method which is the easiest and fastest of all... add the code to the headerinclude template...

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


and then include the icons using the <i> tag like this, where you want the icon to be displayed...

<i class="fa fa-camera-retro"></i>
(2015-09-28, 09:17 AM)mmadhankumar Wrote: [ -> ]first include the FA css using the CDN method which is the easiest and fastest of all... add the code to the headerinclude template...

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


and then include the icons using the <i> tag like this, where you want the icon to be displayed...

<i class="fa fa-camera-retro"></i>

Thanks very much for the help!
Easy enough. Thanks Madan.
......