【发布时间】:2020-09-27 17:36:16
【问题描述】:
我目前正在为我的 Bigcartel 网站定制欢迎页面。
我正在使用 Neat 主题,并希望删除显示在幻灯片上的网格过滤器以显得干净。
我想知道在大卡特尔中是否有可能,要遵循什么流程?
到目前为止,我已经尝试过了..
.slideshow div.featured_holder {
background: none;
}
【问题讨论】:
我目前正在为我的 Bigcartel 网站定制欢迎页面。
我正在使用 Neat 主题,并希望删除显示在幻灯片上的网格过滤器以显得干净。
我想知道在大卡特尔中是否有可能,要遵循什么流程?
到目前为止,我已经尝试过了..
.slideshow div.featured_holder {
background: none;
}
【问题讨论】:
在摆弄 CSS 之后,我能够通过这两个更改移除图像的纹理和变暗。
首先,在你的 CSS 中找到它:
.flickity-viewport:after {
background-color: rgba(0, 0, 0, 0.3);
background-image: url("{{ 'overlay_pattern.png' | theme_image_url }}");
background-repeat: repeat;
background-size: 4px;
content: "";
height: 100%;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
现在,您将要完全移除这条线以移除带纹理的覆盖:
background-image: url("{{ 'overlay_pattern.png' | theme_image_url }}");
要消除图像变暗,只需更改以下内容:
background-color: rgba(0, 0, 0, 0.3);
到这里:
background-color: rgba(0, 0, 0, 0);
您的幻灯片图像应该在这两个更改后正常显示。
【讨论】: