删除线和子弹点 - WP

时间:2013-01-25 18:03:22

标签: css wordpress

Here's my blog (its not finished yet).

在侧边栏中,您可以看到“最近的帖子”和Twitter Feed的许多部分都是按行分隔的,并且旁边有子弹点。

我想删除这些但是我不确定如何。查看页面的源代码,我认为行和项目符号位于'a href'类。

1 个答案:

答案 0 :(得分:1)

查看Grey.css第95行。对于background-image gray / bullet.png和border-bottom#b0b0b0有一个定义。 如果要删除它们,可以通过在嵌入样式中添加以下内容来覆盖它:

.widget ul li a:link, .widget ul li a:visited {
    background-image: none; /* this can be your own custom background image if desired */
    border-bottom: none;    /* this can be your own desired color/thickness if desired */
}