Hi Support,
Is there a quick css fix for this? I would like to change the text “Blog – Latest News” and get rid of the link. I’ve seen other ways, but am wondering about an easy quick css method.
Best,
Jeff
Hi jeffkaiser!
No, with CSS alone you cannot remove a link. This is only possible with jQuery or Javascript.
You will have to stick to the other ways.
Best regards,
Günter
Hi!
You can try following code in Quick CSS
.single .main-title.entry-title a {
display: none;
}
.single .main-title.entry-title:after {
content: 'My title here';
}
.single .main-title.entry-title {
pointer-events: none;
}
But text would be still in the source code and as Gunter said, you are going to need to stick to other ways.
Cheers!
Yigit