我将此添加到Wordpress中,因此它会显示项目符号(似乎被我的主题隐藏)
ul {
list-style-type: disc;
margin-left: 1.5em;
}
它有效,但现在主导航菜单上还有每个项目和子项目的项目符号。
我试过这个来解决它,但它没有用。
#menu ul {
list-style-type: disc;
margin-left: 0;
}
任何想法都会非常感激。感谢。
答案 0 :(得分:2)
如果您想阻止list-style
在其前面添加none
。
在菜单链接中删除了列表样式
header .menu {
float: right;
position: relative;
z-index: 1000;
font-family: 'TitilliumText25L600wt';
list-style: none;
}
在子链接中删除了列表样式
header .menu ul li ul li {
background-color: #ffb400;
background-image: none;
list-style: none;
}
在子链接中添加边框
header .menu ul li:hover ul li a {
color: #ffffff;
background: none;
border-bottom: 1px solid #5C5A52;
}
工作屏幕截图
请参阅此链接以获取更多信息
<强> http://css-tricks.com/almanac/properties/l/list-style/ 强>
答案 1 :(得分:0)
添加到: header .menu ul li(style.css line 343)。
list-style: none;