删除 html/css Tumblr 主题中的行

Remove line in html/css Tumblr theme

试图删除此 Tumblr 主题中的 this line,但在代码中找不到。

有什么建议吗?

link to Theme

tumblr 网页有添加这些线条的背景图片。

#content {
    background: url(http://static.tumblr.com/cc4ocei/cMdkzipvh/borders.png) repeat-y left;
}

要删除两条线,请删除背景图像。

#content {
    background: white;
}

看起来 #content div 有一张背景图片,包含 "borders" 中的 2 张。所以你可以用 #content { background: none !important; } 覆盖它,但这也会删除列的右边框。