How can I add borders on a product page using the Dawn theme?

Hi,

Does anyone know how to add borders on the product page for the dawn theme?

I want it to look like this … https://www.jacquemus.com/en_fr/new-in-women

Thank you.

1 Like

Hey @abalves97

Could you please provide your Store URL and, if applicable, the Password too? Your cooperation is greatly appreciated!

Best Regards,
Moeed

@abalves97

Can you please share your store URL?

My URL is

www.geffcori.com

Password is GeffDoe

Hi @abalves97

Please use this css

.grid__item.scroll-trigger.animate--slide-in {
  border: 1px solid;
}

Hi @abalves97

This is Noah from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


Hope this can help you solve the issue

Best regards,

Noah | PageFly

Hello there,

  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:
.product-grid.grid {
    column-gap: 0px;
}
.grid__item.scroll-trigger.animate--slide-in {
border: 1px solid;
}
.card--standard>.card__content {
margin-left: 10px;
}