如何在 Subcategory List Style (Boxes, Rows, ...) 中隐藏分类描述

我想在子类别列表样式中隐藏描述类别。我们该怎么做?
谢谢!

您好,

您可以通过将以下内容添加到“桌面”>“CSS”来隐藏描述。:slightly_smiling_face:

带子分类的框

.category-boxes {
  .description {
    display: none;
  }
  .subcategories {
    margin-top: 1em;
  }
}

行样式

.categories-list {
  .category {
    .category-description {
      display: none;
    }
    .subcategories {
      margin-top: 0.5em;
    }
  }
}
3 个赞

非常感谢。
祝您早日康复。

1 个赞

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.