我一直用这个撞在砖墙上......
我试图从我的WP主题上的bbPress论坛中删除(或隐藏)子弹点。
以下是链接:http://yorkshirechess.org/forums/forum/chess-in-yorkshire/
我已经尝试过每一种我能想到的css方式,例如显而易见的:
list-style-type: none !important;
答案 0 :(得分:2)
你有一个“背景”:
/* style.css - line 931 */
.entry-content ul li {
background: url(images/dot.png) no-repeat 0 11px;
padding: 3px 0 3px 10px; }
所以只需添加
background: none!important;
你的规则及其完成。