我目前正在为我的Bigcartel网站定制欢迎页面。
我正在使用整洁的主题,并希望删除显示在幻灯片上的网格过滤器,使其看起来干净。
我想知道这是否可能在大卡特尔,以及后续的过程是什么?
到目前为止我已经试过了..
.slideshow div.featured_holder {
background: none;
}发布于 2020-10-31 17:56:16
在摆弄了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);使用这两个更改,您的幻灯片图像应该正常显示。
https://stackoverflow.com/questions/64091420
复制相似问题