在移动视图中,砌体搞乱了Bootstrap导航栏

时间:2015-08-09 21:17:37

标签: jquery html css twitter-bootstrap masonry

我正在尝试使用bootstrap设置菜单栏,该菜单栏切换到移动设备上的堆叠下拉汉堡包吧。 一切都完美无缺,不包括砌筑。但不幸的是,这个项目需要砌筑才能显示图像。 Nav-bar expanded in mobile without Masonry

这就是我的结果与砌体的结果。 Nav-bar expanded in mobile with Masonry cs+js included

导航栏的代码:

<nav class="navbar navbar-default navbar-fixed-top">
        <div class="container-fluid">
          <div class="navbar-header">
            <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#divMenuOptions" aria-expanded="false"
                    style="margin-top:20px;margin-botton:0px">
              <span class="icon-bar"></span>
              <span class="icon-bar"></span>
              <span class="icon-bar"></span>
            </button>
          </div>

          <div class="collapse navbar-collapse" id="divMenuOptions" style="margin-top:10px">
            <ul class="nav navbar-nav">
              <li><a href="/about">About</a></li>
              <li><a href="/faq">FAQ</a></li>
              <li><a href="/contactus">Contact Us</a></li>
              <li><a href="/recently-viewed">Recently Viewed</a></li>
              <li><a href="/favorites">Favorites</a></li>
            </ul>
            <form id="image_url_form" method="POST" action="/classify_url" class= "navbar-form navbar-left visible-md-block visible-lg-block hidden-xs hidden-sm">
              <div class="form-group">
                <input type="text" name = "url" class="form-control" style="width:340px;" id="image_url_input" placeholder="Place image url here and hit enter!">
              </div>
            </form>
            <form action="/fileupload" method="POST" id = "theform" enctype="multipart/form-data" class= "navbar-form" style="float:left;">
              <div class="form-group">
                <input type="button" id="btnBrowseFile" class="btn btn-primary" value="Browse for files"/>
                <input type="file" id="thefile" name="file" style="display:none"></input>
                <!-- class="btn btn-default" -->
              </div>
            </form>
            <p id="file-name" class="margin-10 bold-10"></p> 
          </div>
        </div>
      </nav>

我不知道究竟是什么部分的砌体框架导致这种情况发生。有没有办法可以找到它?是否有可能的解决方法?

编辑: 我发现了部分问题,但仍然不知道如何解决它。 enter image description here

2 个答案:

答案 0 :(得分:0)

如果这是一个选项

,您可以尝试使用gridster而不是砌体

答案 1 :(得分:0)

我通过在masonry.css中注释掉所有.nav样式来解决这个问题。 Idk如果这是不好的做法,但它解决了我的问题。