How do I change Bootstrap 3's glyphicons to white?
CssTwitter BootstrapTwitter Bootstrap-3GlyphiconsCss Problem Overview
I've got the glyphicons in my page, but they are black. How do I set the glyphicons to white?
Css Solutions
Solution 1 - Css
You can just create your own .white
class and add it to the glyphicon element.
.white, .white a {
color: #fff;
}
<i class="glyphicon glyphicon-home white"></i>