0

これが私のブログです(まだ完成していません)。

「最近の投稿」を見ることができるように、サイド バーでは、Twitter フィードの多くの部分が行で区切られ、その横に箇条書きがあります。

これらを削除したいのですが、方法がわかりません。ページのソースコードを見ると、行と箇条書きは「a href」クラスにあると思います。

4

1 に答える 1

1

Look at Grey.css line 95. There is a definition there for background-image grey/bullet.png and a border-bottom #b0b0b0. If you want to remove both you can override this by adding the following to your embedded style:

.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 */
}
于 2013-01-25T18:13:17.937 に答える