我目前正在为我的Bigcartel网站定制欢迎页面。
我正在使用整洁主题,希望删除幻灯片上显示的网格过滤器,使其看起来干净。
我想知道这在大卡特尔中是否可能,接下来的过程是什么?
到目前为止我已经试过了。。
.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);
你的幻灯片图像应该显示正常的这两个变化。