Hi all, so I’m trying to make some changes to my collection lists with the code below:
.collection-list .card__media img {
filter: brightness(0.6);
}
.collection-list .card__content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
justify-content: center;
}
.collection-list .card__content .card__heading .full-unstyled-link {
color: white !important;
font-size: 24px !important;
letter-spacing: 4.25px;
}
.collection-list .card__content .card__heading .icon-wrap {
display: none;
}
.collection-list .collection-list__item {
padding: 12px;
}
Which should make the collection cards look like this:
This works when I do it in the custom css section of the Theme settings, however I receive an error when trying to save it.
I’ve tried adding the code to the base.css file instead, but then the changes don’t take effect.
Upon further testing it seems the issue code is:
.collection-list .card__media img {
filter: brightness(0.6);
}
If I remove this it saves okay, but then the pictures are too bright to properly read the text.
Any ideas?
