Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #312574

    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

    #312768

    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

    #312771

    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

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.