post tile

Ciao, I’m using Shapely and I congratulate you. I noticed that the post title looks like a link.
How can I delete this property?

Thanks

How can i change:

h2 class=“post-title entry-title”

? i don’t want a href…

Thanks

Hi there

Hope you are having a good day and thank you for your question :slight_smile:
Sorry, but without customization of the template this is not possible, you have to customize the template to fix it, but if you just want to disable link it can be done by the custom CSS:

h2.post-title entry-title {
pointer-events: none;
}

Thanks!
Colorlib Support Team

Thanks, I write

h2.post-title a, entry-title {
pointer-events: none;
}

So, is this a good solution for you? :slight_smile:

I don’t know if it’s the right solution, but it works …
writing h2.post-title entry-title {
pointer-events: none;
}

nothing happened … boh?!

Thanks

He there

This code will deactivate mouse click on the element :slight_smile: