我读了这篇帖子,其中提到要自定义 CSS。我想知道:具体该如何操作?
我能做到这一步:
并且能进入代码编辑器:
但从那里开始该怎么做?
你好 Ronald ![]()
快完成了!
请注意您在浏览器开发者工具中看到的选择器:
(在这里的右侧)
因为单独使用 .description 可能会定位到不希望的元素,所以正确的选择器是:
.category-boxes .description。
然后代码将是:
.category-boxes .description {
display: none;
}
非常感谢!![]()
一个小细节是:应该改为;否则会报错😝
.category-boxes .description {
display: none;
}
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.