Remove borderline for Collage - Dawn Theme

Topic summary

Goal: Remove the thin border around Collage blocks in the Shopify Dawn theme.

Key steps suggested:

  • Add custom CSS in theme.liquid (before ):
    • .collage-card { border: unset !important; }
  • Alternative approach in Assets > base.css:
    • .global-media-settings { border: none !important; }

Follow-up for multirow layouts:

  • Use the global selector solution (.global-media-settings) via theme.liquid to remove borders across multirow collage sections as well.

Context:

  • The requester shared store URLs (vsai.store, /pages/subjects, /pages/v01-yellowstone) so helpers could verify the issue.
  • Screenshots were provided; the core resolution relies on the CSS snippets above.

Outcome:

  • The requester confirmed the solution worked and expressed thanks.
  • No remaining open issues; thread effectively resolved.
Summarized with AI on December 28. AI used: gpt-5.

Hello,

Is there a way where I can remove the small line round this collage?

Dear regards

//Rasmus

1 Like

Hello @RasmusUG

Can you share store URL?

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

https://vsai.store/

ponyplay

https://vsai.store/pages/subjects

1 Like

https://vsai.store/pages/subjects

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.collage-card { border: unset !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

1 Like

Ty so much!!

Hi @RasmusUG

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
.global-media-settings {
    border: none!important;
}

1 Like

What if I want to do it with a multirow like here: https://vsai.store/pages/v01-yellowstone

Ty so much!

1 Like

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.global-media-settings { border: unset !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

1 Like

Hi @RasmusUG

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance. If helpful then please Like and Accept Solution.

1 Like