[dropcap]U[/dropcap]sing Twitter Bootstrap - Adding More Custom Icons
Twitter bootstrap is one of the most effective frameworks available online at the moment to speed up front end web development process.First you want to make sure your icon is 14px by 14px. Then you will want to place these lines into your CSS file.
.icon-reddy {
background-image: url("../path/to/icons/reddy.png");
background-position: center center;
height: 14px;
width: 14px;
}
reddy.png icon is 14px by 14px. The class "icon-reddy" is to be replaced by whatever you want to call your new icon class. Now an implementation of this is as follows!
View More Glyphicons
- Web Application Icons
- Transportation Icons
- Gender Icons
- File Type Icons
- Spinner Icons
- Form Control Icons
- Payment Icons
- Chart Icons
- Text Editor Icons
- Currency Icons
- Directional Icons
- Video Player Icons
- Brand Icons
- Medical Icons
View More Twitter Bootstrap Icons
Custom Twitter Bootstrap Button Generator
Integrating Font Awesome 4.0 with Twitter Bootstrap
https://www.youtube.com/watch?v=RVn3e3nAA6A
Source: YouTube
Use font icons, to best performance. By example:
@import url(http://weloveiconfonts.com/api/?family=fontawesome);
.icon-linkedin:before {
font-family: 'FontAwesome', sans-serif;
content: "\f0e1";
}