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

Popular posts from this blog

how to insert data php javascript mysql with multiple array session 2 -

multithreading - Exception in Application constructor -

windows - CertCreateCertificateContext returns CRYPT_E_ASN1_BADTAG / 8009310b -