html - Bootstrap : Setting content position of one div as per other div -



html - Bootstrap : Setting content position of one div as per other div -

i have display someting

now navigation ends bottom div should end there using breadcrumb navigation

<div class="row"> <div class="span9" > <ol class="breadcrumb"> <li><a href="#">news & events</a><span class="divider"> |</span></li> <li><a href="#">jobs</a><span class="divider"> |</span></li> <li><a href="#">storage</a><span class="divider"> |</span></li> <li><a href="#">transportation</a><span class="divider"> |</span></li> <li><a href="#">site map</a><span class="divider"> |</span></li> <li><a href="#">contact us</a></li> </ol> </div> </div>

so should paste code copyright section ends @ end of navigation on next line ?

looks you meant utilize col-md-9 instead of span9 bootstrap 3

put within span9 div

<div class="col-md-offset-5"><a href="#">copywrite</a> | <a href="#">whatever</a> | <a href="#">anothere </a></div>

link here

dont forget container row though

html css html5 css3 twitter-bootstrap

Comments

Popular posts from this blog

php - Android app custom user registration and login with cookie using facebook sdk -

django - Access session in user model .save() -

php - .htaccess Multiple Rewrite Rules / Prioritizing -