jquery - Cant get to the second page with Bootstrap (One Pager Landing Page) -


for reason cant see second page? please help. code here: https://jsbin.com/dapowipize/edit?html,css,js,output

this live preview https://output.jsbin.com/dapowipize if zoom out, see text "hi," reason, cannot scroll down it...

please :(

many thanks!

kenny

this code:

<div class="navbar navbar-default navbar-fixed-top"> /*everything else*/ 

just close div after first container div, can hi.

<div class="navbar navbar-default navbar-fixed-top">     /*first container*/     <div class="container">         <div class="navbar-header">             /*code goes inside div*/         </div>     </div> </div> <div class="container"> /*rest of code*/ 

the reason div open it's making rest of page part of nav, , since nav fixed @ top, there's no way of going down see rest of page. let me know if helps.


Comments