Removal Page & Post Title Underline and Link

Hi! Since creating a shapely-child page the titles of pages and posts are now have an underline on hover and an associated link back to the same page. How do I remove these for all post and page titles?

Thanks!

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 -> Additional CSS

a:hover {
    text-decoration: none;
}

Best Regards,
Support

Thank you for such quick feedback. Amazing support!
That removed the underline but the link still exits so pointer changes when hovering. How do I remove this as well?

Just to confirm, on this particular page, you want this header link to have no pointer events.

If so use the following code.

'/remove pointer events from header/
.page-id-1001 h2.post-title {
pointer-events: none !important;
}`

Best regards,
Support