您好,我目前正在处理的主页上有一个 twitter 提要。我无法摆脱子弹。我找不到正确的 CSS 代码来输入“list-style-type: none;”行
我找了好久!请帮忙!
www.playlistforlife.org.uk/wordpress
谢谢
磷
那是因为它们被添加为伪 :before 元素,而不是 with list-style
(这是添加项目符号点的更典型方式)。查看 style.css 的第 1379 行,您会看到添加它们的代码块。要么将它们注释掉,要么添加display:none
为了学习,这里是添加这些项目符号的 CSS 块:
CSS - 样式.css
.post-content ul li:before {
content: "\2022";
position: absolute;
left: 0;
top: 0;
color: #a0a0a0;
font-family: Arial, Helvetica, sans-serif;
font-weight: 700;
font-size: 16px;
}