How can I add border line on my collection and sections

How can I add border line on my collection and sections

Wojak
Tourist
8 0 2

Hey guys I want to add solid border line on my collection of entire site.

I tried to add

 

.sf__pcard .sf__pcard-image .spc__main-img{
border:1px solid #000;
}

 

on base.css but didn't work.

 

Here is a reference that I want, I use Rise theme. 

スクリーンショット 2025-01-09 午前1.54.50.png

Replies 7 (7)

devcoders
Shopify Partner
1454 172 455

Hello @Wojak 
Thank you for submitting your query to the Shopify community. I’d be happy to assist you. Could you please provide the store URL and password (if it’s password-protected) so I can review and get back to you with an update?

Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!
Wojak
Tourist
8 0 2

devcoders
Shopify Partner
1454 172 455

Hello @Wojak 

Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css Add the provided code at the end of the file.

 

 

ul#product-grid {
border-left: solid 1px #000;
border-top: solid 1px #000;
column-gap: 0;
row-gap: 0;
}
li.grid__item.scroll-trigger.animate--slide-in {
border-right: solid 2px #000;
border-bottom: solid 1px #000;
}

 

Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!
Wojak
Tourist
8 0 2

It seems it's not working

スクリーンショット 2025-01-09 午前3.00.50.png

devcoders
Shopify Partner
1454 172 455

Hello @Wojak 

 

ul#product-grid {
border-left: solid 1px #000;
border-top: solid 1px #000;
column-gap: 0;
row-gap: 0;
}
li.grid__item.scroll-trigger.animate--slide-in {
border-right: solid 2px #000;
border-bottom: solid 1px #000;
}

devcoders_0-1736359604888.png

 

Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!
Wojak
Tourist
8 0 2

😭

スクリーンショット 2025-01-09 午前3.11.13.png

devcoders
Shopify Partner
1454 172 455

Hello @Wojak 

Also add this code.

.product-card-wrapper .card, .contains-card--product {
    border-left: solid 1px #000;
    border-top: solid 1px #000;
    column-gap: 0;
    row-gap: 0;
}



Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!