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
when ~690px. become 2 lines , contact line has align right.this 1st problem, how can align left when .col-sm- (<750px)?
when reduce smallest size , text stick together. 2nd problem , how can show item line line when .col-xs (for smallest resolution)?
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
Post a Comment