How to adjust text position and line color in Sense theme?

Hi Guys! I have two questions. the first is how can i move the text in the middle and the second is how can i make the gray lines black? SENSE THEME

Hi,

To resolve the issue you have, please add the code below to assets/component-accordion.css file.

/* Accordion Title Centered */
.accordion .summary__title {
    display: flex;
    flex: 1;
    justify-content: center;
}
/* Accordion Lines - Black */
.accordion {
    margin-top: 2.5rem;
    margin-bottom: 0;
    border-top: 0.1rem solid #000 !important;
    border-bottom: 0.1rem solid #000 !important;
}
/* Remove Duplicated Accordion Lines Between Accordions */
.accordion+.accordion {
    margin-top: 0;
    border-top: none !important;
}

If you resolve the issue, please click “Like” and “Accept solution”.

If you still have the issue or have a question, please let me know.

Hope it helps.

Thanks.