Bootstrap collapsed menu not pushing content down when expanded

前端 未结 10 1607
挽巷
挽巷 2020-12-10 01:00

I am using Twitter Bootstrap to play around with the responsive side of a website. I am having a problem however with the smaller widths where the collapsed menu is going ov

10条回答
  •  天命终不由人
    2020-12-10 01:55

    In my case, it worked changing this

    for this

    
    

    and editing my css from this:

    .wrapper {
        min-height: 100%;
        height: auto !important;
        margin: 0 auto -30px;
        padding: 70px 0 30px 0px;
    }
    

    to this:

    .wrapper {
        min-height: 100%;
        height: auto !important;
        margin: 0 auto -30px;
        padding: 0 0 30px 0px;   /* new padding */
    }
    

提交回复
热议问题