html - How to handle the responsive footer in CSS -


here code of footer

<div class="col-lg-12">   <span class="copyright link">copyright © 2006-2015 pure international</span>   <ul id="footer_nav" class="list-inline">     <li><a class="link" href="<?= site_url("page/view/privacy"); ?>"><?= lang("privacy"); ?></a></li>|     <li><a class="link" href="<?= site_url("page/view/terms"); ?>"><?= lang("t&c"); ?></a></li>|     <li><a class="link" href="<?= site_url("page/view/about_us"); ?>"><?= lang("about_us"); ?></a></li>|     <li><a class="link" href="<?= site_url("page/view/contact_us"); ?>"><?= lang("contact_us"); ?></a></li>   </ul> </div> 

please have in responsive behavior

at beginning , works fine enter image description here

when ~690px. become 2 lines , contact line has align right.this 1st problem, how can align left when .col-sm- (<750px)? enter image description here

when reduce smallest size , text stick together. 2nd problem , how can show item line line when .col-xs (for smallest resolution)? enter image description here

eg

privacy policy terms , conditions contact 

it perfer fix bootstrap tag css welcome.

thanks helping

updated:

right have used css approach, problem remain 2nd one, , how show item line line? thanks

@media screen , (min-width: 700px) {     #footer_nav {         float:right;     } } 


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -