Hi, I would like to get rid of the “permanent link” hover text which you get when you hover over a title. I had previously got rid of this using custom css
.main-title.entry-title {
pointer-events: none;
}
However, this seems to not work now (possibly since upgrade of Enfold?)
Is there another code I could use?
Hey andrea,
Try the following instead:
.single .post-title a {
pointer-events: none !important;
}
Regards,
Rikard
perfect – thank you