How can I modify a collapsible row's border properties?

Solved

How can I modify a collapsible row's border properties?

collins276
Trailblazer
213 1 32

Hello,

I'd like to change border-bottom-color and border-width of Collapsible row 

Thank you!

My url: https://189ee3-2.myshopify.com/products/demin

 

Screenshot.png

 

Accepted Solution (1)

Guleria
Shopify Partner
3944 791 1122

This is an accepted solution.

Hello @collins276 ,

 

Follow these steps:

1. Go to Online Store -> Theme -> Edit code

2. Open your base.css file and paste the following code at the bottom:

.accordion {
    border-bottom: 2px solid red !important; 
}

 

Change red with actual color code you need.
And change 2px with desired border width you need.

 

Thanks

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder

View solution in original post

Replies 2 (2)

Guleria
Shopify Partner
3944 791 1122

This is an accepted solution.

Hello @collins276 ,

 

Follow these steps:

1. Go to Online Store -> Theme -> Edit code

2. Open your base.css file and paste the following code at the bottom:

.accordion {
    border-bottom: 2px solid red !important; 
}

 

Change red with actual color code you need.
And change 2px with desired border width you need.

 

Thanks

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
collins276
Trailblazer
213 1 32

Thank you😀