-
Book Overview & Buying
-
Table Of Contents
Bootstrap for ASP.NET MVC - Second Edition
By :
Bootstrap 4 no longer comes bundled with the Glyphicons icon set. However, there are a number of free alternatives available for use with your Bootstrap and other projects. Font Awesome is a very good alternative to Glyphicons that provides you with 650 icons to use and is free for commercial use.
Learn more about Font Awesome by visiting https://fortawesome.github.io/Font-Awesome/.
You can add a reference to Font Awesome manually, but since we already have everything set up in our project, the quickest option is to simply install Font Awesome using Bower and compile it to the Bootstrap style sheet using Gulp. To accomplish this, follow these steps:
bower.json file, which is located in your project route. If you do not see the file inside the Visual Studio Solution Explorer, click on the Show All Files button on the Solution Explorer toolbar.font-awesome as a dependency to the file. The complete listing of the bower.json file is as follows: {
"name": "asp.net",
"private": true,
"dependencies": {
"bootstrap": "v4.0.0-alpha.3",
"font-awesome": "4.6.3"
}
}
font-awesome subfolder to the wwwroot/lib/ folder inside your project.fonts folder located under wwwroot/font-awesome to the wwwroot folder.bootstrap.scss file located in the wwwroot/lib/bootstrap/scss folder and add the following line at the end of the file: $fa-font-path: "/fonts";
@import "../../font-awesome/scss/font-awesome.scss";
The preceding steps will include Font Awesome in your Bootstrap CSS file, which in turn will enable you to use it inside your project by including the mark-up demonstrated here:
<i class="fa fa-pied-piper-alt"></i>
Change the font size
Change margin width
Change background colour