I’ve always used this quick css rule to remove link from the post title (tag h1):
.single h1.post-title.entry-title {
pointer-events: none;
}
but it does not work anymore. Can you help me, please?
Hey Nicola!
Please try following one
.single .post-title.entry-title {
pointer-events: none !important;
}
If that too does not work, please post the link to your website.
Best regards,
Yigit
Hi Yigit, it does not work for me.
Site and post page is here
Hey!
Would you like to disable the link in title bar? If so, please use following code
.single .main-title.entry-title {
pointer-events: none;
}
Best regards,
Yigit
Yes. that’s perfect! thanks