remove link from page title
The page titles in my Adventurous Pro site seem to all be hyperlinks linking to themselves. To keep the title visible but remove the hyperlink I tried this CSS:
.content-area .entry-title, .content-area .entry-title a {
pointer-events: none;
cursor: default;
}
This works, but then the titles in my search output are no longer links, which they should be. How do I keep a page title from being a link within that same page?