CSS 去除 Wordpress 29 主题中的白色 space?

CSS to get rid of white space in Wordpress Twenty Nineteen theme?

我在 www.risingtidescoffeecompany.com/home/ 的页面在导航 bar/above 大滑块下方有一个白色 space。

我想弄清楚如何删除那个白色 space,使标头下方的滑块与导航栏齐平。我已经使用 CSS 隐藏了条目标题,并且尝试了在 Google 上找到的几个建议,但没有任何效果。

从检查员看来,您的问题似乎是由以下 css、(第 5196 行)

强加的最高边距
/* Blocks */
/* !Block styles */
.entry .entry-content > *,
.entry .entry-summary > * {
  margin: 32px 0;
  max-width: 100%;
}

它再次出现在媒体查询中,(第 5217 行)

@media only screen and (min-width: 768px) {
  .entry .entry-content > *,
  .entry .entry-summary > * {
    margin: 32px 0;
  }
}

在你提到的主题里themes/twentynineteen/style.css?ver=1.4

如果两个 css 行都停用,则间隙消失,在 chrome 中测试。