Solved

Remove Grey Lines from Prestige Theme

Multibrands
Explorer
65 2 29

Hey Guys,

 

Is there any way that the grey section lines can be removed? or colour changed?

 

Many thanks

 

the-botanical-factory.myshopify.com

crudah

 

Many thanks

Accepted Solution (1)
dmwwebartisan
Shopify Partner
12289 2547 3698

This is an accepted solution.

@Multibrands 

Remove old code and add this new one.

/* css for remove border */
.shopify-section--bordered {
   display:none;
}

/*change border color */
.shopify-section--bordered {
    border-top: 1px solid red !important;
}
If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app

View solution in original post

Replies 4 (4)

dmwwebartisan
Shopify Partner
12289 2547 3698

@Multibrands 

Please add the following code at the bottom of your assets/theme.css file.

 

/* css for remove border */
.shopify-section--bordered + .shopify-section--bordered {
   display:none;
}

/*change border color */
.shopify-section--bordered + .shopify-section--bordered {
    border-top: 1px solid red !important;
}

 

 

Hope this helps.

Thanks!

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app
Multibrands
Explorer
65 2 29

Thank you for answering so quickly, I have pasted the code in but I do not think it is working, please see attachments.

 

Screenshot 2021-02-16 at 09.48.26.png

Screenshot 2021-02-16 at 09.48.41.png

  

dmwwebartisan
Shopify Partner
12289 2547 3698

This is an accepted solution.

@Multibrands 

Remove old code and add this new one.

/* css for remove border */
.shopify-section--bordered {
   display:none;
}

/*change border color */
.shopify-section--bordered {
    border-top: 1px solid red !important;
}
If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app
Multibrands
Explorer
65 2 29

Great, thank you so much.