How can I remove grey lines from the Prestige theme?

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

@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!

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

1 Like

@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;
}

Great, thank you so much.

1 Like