Navbar adjustment in bootstrap | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Navbar adjustment in bootstrap

The email input and submit button are not aligning in one line. I can align it in one line by adjusting width but it will not be as effective for all devices. How to dynamically make to use available width & height and auto adjust. https://code.sololearn.com/WAtPC2NHz4H9/?ref=app

22nd Jul 2020, 5:45 AM
harshit
harshit - avatar
6 Answers
+ 5
.form-row at parent then .col or .col-x at middle container Example : <form> <div class="form-row"> <div class="col-7"> <input type="text" class="form-control" placeholder="City"> </div> <div class="col"> <input type="text" class="form-control" placeholder="State"> </div> <div class="col"> <input type="text" class="form-control" placeholder="Zip"> </div> </div> </form> Reference : https://getbootstrap.com/docs/4.0/components/forms/#column-sizing edit : https://code.sololearn.com/WUIovWWSxYsN/?ref=app remarks: you shouldn't nest <form> in <ul>
22nd Jul 2020, 7:00 AM
Gordon
Gordon - avatar
22nd Jul 2020, 6:10 AM
harshit
harshit - avatar
+ 1
Sorry not sure about how LinkedIn app works.
22nd Jul 2020, 12:53 PM
Gordon
Gordon - avatar
0
Thanks Gordon . I am facing another problem. Generally what I have observed with my website and other people's website is that when it is opened in LinkedIn(in it's own browser) it disturbs all the fonts/design/alignment etc. Why ? How to correct it ?
22nd Jul 2020, 8:20 AM
harshit
harshit - avatar
0
What's LinkedIn's own browser?
22nd Jul 2020, 10:52 AM
Gordon
Gordon - avatar
0
Gordon I mean, if it opens in the LinkedIn app only and not on any other browser on the phone.
22nd Jul 2020, 12:41 PM
harshit
harshit - avatar