我正在使用"Awful Media"中最新的Twitter Bootstrap和“Respond”主题。
我的问题是,我的下拉菜单的子菜单显示在下拉列表中,而不是右侧左右,并且您无法正常阅读任何内容..
(我不知道我应该准确发布哪些代码,如果你查看我的beta-Testsite可能会有帮助吗?导致问题的子菜单是“采取行动”..)
答案 0 :(得分:0)
从这里匹配您的HTML和类
它与您的代码完全相同{可能会使用相同的}
Devin walker multi-child navbar for bootstrap
并为新孩子添加主题类以获得相同的外观
尝试下拉项目的这些样式
.navbar .nav > li > a {
float: none;
margin: 25px 10px 5px;
padding: 5px;
font-size: 18px;
line-height: 19px;
margin-left: 20px;
color: #999999;
border: none;
background-image: url("../img/color.jpg");
background-size: 100%;
background-position: -200px -10px;
background-repeat: no-repeat;
font-family: 'Lato', sans-serif;
-webkit-transition: background-position .5s ease, color .8s ease;
-moz-transition: background-position .5s ease, color .8s ease;
-o-transition: background-position .5s ease, color .8s ease;
}
.navbar .nav > li > a:hover {
color: #fff;
background-position: 0 0;
text-decoration: none;
background-color: transparent;
font-family: 'Lato', sans-serif;
}
.navbar .nav .active > a,
.navbar .nav .active > a:hover {
text-decoration: none;
color: #fff;
background-position: 0 0;
background-image: url("../img/color.jpg");
background-size: 100%;
}