Code for removing page titles but not blog posts not working.

I have done quite a bit of research on this and found that the css code recommended by theme creator SilkaIns

Add this code to Theme Options - Other - Custom CSS. It will hide titles from all pages but will leave them in place for all Posts.

.page .entry-title {
display: none;
}

The thing is this still gets rid of blog titles as well as page titles. Any other recommendations?

Thanks

Hi @nline24,

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

Could you please try using the following CSS code to achieve it?

body.page .entry-title {
display: none;
}

Best Regards,
Movin