Change colour of all section borders on Prestige

Hi there,

The Prestige theme defaults all section borders to a light Grey colour. I would like to change these to Black.

Can someone assist please?

Hi,

Need to do CSS customization (add css at theme.css, styles.css, or similar)

Code example

/* Change all section borders to black */
.section {
    border-color: black !important;
}

/* If specific sections have unique classes, you can target them individually */
.some-specific-section-class {
    border-color: black !important;
}