Add Text Shadow on Image Banner - SENSE THEME

Hi @MaxMedReady , go to edit code > assets > base.css, find this element:

.subtitle {
    font-size: 1.8rem;
    line-height: calc(1 + .8 / var(--font-body-scale));
    letter-spacing: .06rem;
    color: rgba(var(--color-foreground),.7);
}

Change it with:

.subtitle {
    font-size: 1.8rem;
    line-height: calc(1 + .8 / var(--font-body-scale));
    letter-spacing: .06rem;
    color: rgba(var(--color-foreground),.7);
   text-shadow: 2px 2px #000000;
}