-3

我试图弄清楚这个插件如何使用它的视图选项,但我不知道如何删除 to 条目之间的空间。你可以在www.biketrading.dk看到我的问题。
我希望有人能告诉我该怎么做。

4

1 回答 1

0

该间距由margin-bottom您的文件中定义: style.css?ver=3.9.1 。您必须将这两个都更改为所需的间距。

在第 1319 行:

.entry-content table, .comment-content table {
    font-size: 14px;
    line-height: 1.2857142857;
    margin-bottom: 24px;    <-------- HERE
}

在第 426 行:

table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin-bottom: 24px;   <-------- HERE
    width: 100%;
}
于 2014-06-05T17:33:02.113 回答