remove read more and page titles

Need assistance…2 part:

  1. How do I remove “read more” from the slider but keep the post title?
  2. How do I remove the Page title from the content section of the page?

Thank you in advance!

Hi @jldem,

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

1. How do I remove “read more” from the slider but keep the post title?

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 .read-more {
    display: none;
}
2. How do I remove the Page title from the content section of the page?

By using below CSS code as described above.


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

Best Regards,
Movin