Hi again! No problem! Don’t hesitate to ask anytime. First off, that’s a cute adaptation of the styles! I really appreciate the attribution and the shout-out!
Addressing your issues:
- For sizing the ‘Support Us’ icons, you can increase the
heightattribute of the<img>element. Or, you can set them in CSS to avoid having to set the height for each images manually:
.custom-cb > img {
height: 35px;
}
- And for the off collection box background, set the
heightof the.collection_row::beforeelement to 100%, minus the space that it takes by its heading/title:
.collection_row::before {
height: calc(100% - 3.5em);
}
The calculation is just speculation: 100% of the height minus 3.5em—around the height of the collection’s heading/title, you can readjust it to your liking.
Sorry I didn’t put many documentations/comments in the SCSS source code T^T
Also, if you wish to, I can help you guys set things up with the CSS directly :)