即使在CSS中将其设置为none,也无法删除我的列表公告样式

时间:2015-07-21 20:21:36

标签: jquery html css wordpress

我正在创建一个使用Wordpress作为CMS的网站,我安装了“食物和饮料”插件,当我通过该插件添加我的内容时,它会创建一个食物列表(我正在做菜单)。现在,当我通过检查元素(chrome)删除它时,我的列表上的公告样式没有发生任何事情。这是我的代码:

.fdm-menu.clearfix, .fdm-menu .clearfix {
  clear: both;
}
.entry-content ol, .entry-content ul {
  margin-left: 40px;
}
.entry-content ol, .entry-content p, .entry-content ul, .quote-caption {
  margin-bottom: 26px;
}
.fdm-menu, .fdm-menu>li, .fdm-section, .fdm-section>li {
  list-style: none;
}

3 个答案:

答案 0 :(得分:1)

虽然你在base.css中将list-style设置为none,但你在style.css中有这个覆盖它。

.entry-content ul > li {
  list-style-type: disc;
}

从style.css

中删除它

答案 1 :(得分:0)

您将此处列为光盘,因此请将其更改为无:

 .entry-content ul > li { list-style-type: none; }

答案 2 :(得分:0)

尝试使用list-style-type代替list-style