hey,
i need your help aligning the arrows of the collection list to the right as show in the image.
thanks in advance.
hey,
i need your help aligning the arrows of the collection list to the right as show in the image.
thanks in advance.
To complete your requests, please follow these steps:
.collection-list-wrapper h3.card__heading > a {
display: flex !important;
flex-direction: row-reverse !important;
justify-content: flex-end !important;
}
Here is the result:
I hope this helps
Best,
Daisy
You can refer to this css:
.collection-list-wrapper .card__heading a {
display: flex;
flex-direction: row-reverse;
justify-content: flex-end;
}
.collection-list-wrapper .card__heading .icon-wrap svg {
transform: rotate(-180deg);
}
Please add this code more
.collection-list-wrapper h3.card__heading > a span.icon-wrap > svg {
transform: rotate(180deg);
}
I hope this helps
Best,
Daisy