我正在使用最新的 Twitter Bootstrap 和来自"Awful Media"的 "Respond" 主题。
我的问题是,我的下拉菜单的子菜单出现在下拉菜单上方,而不是在右侧左右,您无法正确阅读任何内容..
(我不知道我应该准确发布哪个代码,如果您查看我的beta-Testsite可能会有所帮助?导致问题的子菜单位于“采取行动”下。)
我正在使用最新的 Twitter Bootstrap 和来自"Awful Media"的 "Respond" 主题。
我的问题是,我的下拉菜单的子菜单出现在下拉菜单上方,而不是在右侧左右,您无法正确阅读任何内容..
(我不知道我应该准确发布哪个代码,如果您查看我的beta-Testsite可能会有所帮助?导致问题的子菜单位于“采取行动”下。)
从这里匹配您的 html 和类
它与您的代码完全相同{可以使用相同的}
并为新孩子添加主题课程以获得相同的外观和感觉
为下拉项目尝试这些样式
.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%;
}