Where can I edit h2 tags in a Shapely template

When creating pages in the Shapely theme, the titles comes in as a an h2 tag with the class of “post title”.

I need to change this so that the title is not a link. Which template do I need to edit? Also, What does the code look like, that I need to edit?

Thank you!

Hello there,

I hope you are doing well today.

You can use the following CSS code to remove the link from the titles by going to Appearance > Customize > Additional CSS and pasting it there.

/*Remove link from the title*/
.post-content .entry-content .post-title a {
    pointer-events: none;
}

Best Regards,
Support

Thank you. You’ve made my day!