I´m using bootstrap 3 and I put one Glyphicons side by side with a input text and Glyphicons not showing (but the btn-info show) I'm using: class="input-group" to envolve the glyphicon, input text and submit button.
here is the code:
<body>
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Meu Site</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="#">News</a></li>
<li><a href="#">Login</a></li>
<li><a href="#">Create Account</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container -->
</nav>
<div class="container">
<div class="row">
<div class="span7 text-center col-md-4 col-md-offset-3" style="float: none; margin-left: auto;margin-right: auto;">
<img src="../../app.images/logo.jpg" />
</div>
<form class="span7 text-center col-md-4 col-md-offset-3" style="float: none; margin-left: auto;margin-right: auto;" role="search">
<div class="form-group">
<label class="radio-inline"><input type="radio" name="optradio">Opt1</label>
<label class="radio-inline"><input type="radio" name="optradio" checked="">Opt2</label>
<label class="radio-inline"><input type="radio" name="optradio">Opt3</label>
</div>
<div class="input-group">
<a href="#" class="btn btn-info input-group-btn">
<span class="glyphicon glyphicon-th"></span>
</a>
<input class="form-control " type="text" placeholder="Search" />
<div class="input-group-btn">
<button class="btn btn-default" type="submit">Search</button>
</div>
</div>
</form>
<div class="span7 text-center col-md-4 col-md-offset-3" style="float: none; margin-left: auto;margin-right: auto;">
Slogan
</div>
<div class="span7 text-center col-md-4 col-md-offset-3" style="float: none; margin-left: auto;margin-right: auto;">
<a href="#">Mobile</a>
<a href="#">Addons</a>
<a href="#">Contact</a>
</div>
</div>
</div>
</body>
Seems to be caused by .input-group-btn. There is a rule to set font-size of this element to 0. Add an style rule with this:
div.container a.input-group-btn {
font-size: 14px;
}
Working sample
After reading many threads on this topic, here's the solution I came up that finally fixed my Glyphicon bug:
Find directory fonts
directory path: node_modules/bootstrap/fonts
Copy & paste fonts directory into your sourced bootstrap directory from which you've been developing already.
I'm using Grunt as my task manager, therefore in my Gruntfile.js I made sure to grunt the following:
copy: {
main: {
expand: true,
cwd: "node_modules/",
src: [
"bootstrap/dist/css/bootstrap.min.css",
"bootstrap/dist/css/bootstrap.min.css.map",
"bootstrap/*.*",
"bootstrap/**/*.*"
],
"dest": "server/public/vendor/"
}
},
My tears finally went away afterwards :)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With