Post title in slider italics

Love the theme!

I am trying to make it so that the titles in the featured title aren’t italics. I cant find anywhere that it is referencing to make the titles in italics.

Any help would be great.

Thank you.

Hi @rubadue,

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

You can try achieving this 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

.flex-caption h2.entry-title {
    font-style: normal;
}

Best Regards,
Movin

Hi Movin,

This worked perfect for the titles in the Slider, but how can I take out the Italic on post title for the rest of the home page/website?

I’d like Post Titles to have the same font like the featured titles.

Thanks.

You can achieve this by using the below CSS code.

#page .entry-title {
    font-style: normal;
}

Thanks Movin!

That works perfectly.

You are most welcome here :slight_smile: