How to make colleciton images into links to the collection

I have added a multi-column to the homepage of my site, www.fleshandbloodcards.com The plan was to put links to each colleciton there which would show the collection logo and make the logo an href link to the collection. I can’t find a way to do this. It seems I either have to put a link to a collection or some text and make the text a link but it’s ugly! I just want the collecton logos to be clickable

see what I mean?

If someone can tell me how to do what I want to do it would be very appreciated.

Thanks all,

Chad

Hi @chad0x001 ,

This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:

Just insert the link normally. Then use css to handle as you like
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/section-multicolumn.css->paste below code at the bottom of the file:

.multicolumn-list .multicolumn-card {
    position: relative;
}
.multicolumn-list .multicolumn-card .icon-wrap {
    display: none;
}
.multicolumn-list .multicolumn-card__info a {
    font-size: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

I hope it would help you
Best regards,

Richard | PageFly

That worked brilliantly. Thanks Richard!