Site title color and site tagline text color

How to change site title color nd site tagline text color

Hi,

Please use the following CSS snippet:

.header-logo__description,
.header-logo__name {
    color: red;
}

or this one if you’d like to make them of different colors:

.header-logo__description {
    color: red;
}

.header-logo__name {
    color: green;
}

works tnnks

1 Like