How to remove borders from collection images in Mandolin theme?

Hello,

I’m using the Mandolin theme which is very border heavy. I would like to remove the borders around the collection page images only but haven’t been able to figure it out. Any help would be appreciated.

Thank you

Hi @GREERChicago ,

Please go to Actions > Edit code > Assets > section-collage.css file and paste this at the bottom of the file:

.Collage__Body .CollageItem {
    border: none !important;
}

Hope it helps!

Hi @GREERChicago

You can try this code by following these steps:

Go to Online store => themes => actions => edit code and add this code on file theme.liquid before tag


Hope this answer helps.

Best regards,

Victor | PageFly

Thank you for your kind reply! Unfortunately, this didn’t work. It’s weird how sticky this border is!

Hi @GREERChicago ,

Please send me a screenshot of the section you want to remove border. I’ll check again it.

You can use this code to remove the border, if the code doesn’t work please share screenshot border you need to remove.

.CollageItem{
border: unset !important;
}

THANK YOU SO MUCH FOR YOUR HELP!