entry title font and color changed by themselves

Hi,

Thus far I have been very satisfied with the Activello theme. However, today as I updated it, the color and font of the title’s name changed automatically. I tried to fix this through the css sheet

entry-title {
font-family: ‘Pacifico’, cursive;
font-size: 24px;
font-style: italic;
margin-top: 0;
margin-bottom: 15px;

but nothing changes on my blog.

it used to be dark and cursive, now its pale non-cursive (as shown in the photos). What am I doing wrong?

Thanks

Hi @jelenaniknik,

I hope you are well today and thank you for your question.

Are you talking about the site title?

It doesn’t by default display in cursive.

Had you made it cursive by developing any custom code in the theme files?

You can try changing its color and font style by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

.site-name a.navbar-brand {
    font-family: 'Pacifico', cursive;
    color: #000;
    font-style: italic;
}

Kind Regards,
Movin