html - Bootstrap Glyphicons/Navigation Icons -
i cannot figure out how text in p tags fit inside navigation icons (using bootstrap glyphicons). here how using it:
<div class="wrapper"> <div class="header"> <span class="glyphicon glyphicon-chevron-left"></span> <span class="glyphicon glyphicon-chevron-right"></span> <p>january, 2016</p> </div><!--this ends header div--> january, 2016 appears below navigation icons instead of in between left , right arrows. can suggest solution?
try this
<div class="wrapper"> <div class="header"> <p> <span class="glyphicon glyphicon-chevron-left"></span> <span>january, 2016</span> <span class="glyphicon glyphicon-chevron-right"></span> </p> </div><!--this ends header div-->
Comments
Post a Comment