Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #241761

    Hi

    How can I remover the featured image link from all the posts that are shown in the layout with small preview image. You gave me this for big images which worked:

    .single-post .big-preview a {
    pointer-events: none;
    }

    I tried this for small preview but it didn’t work!

    .single-post .small-preview a {
    pointer-events: none;
    }

    Thanks
    Abedi

    #241937

    Hey abedia!

    You can use this:

    .small-preview, .single small-preview  {
    pointer-events: none;
    }

    Best regards,
    Ismael

    #241990

    Thanks. It worked. But is it possible to keep the image link in blog page or the page showing the list of posts of a particular category and still not having the image link in the post page?
    I want the link works here (linking to the post not image as the title does): http://www.kitm.se/sv/category/nyheter/
    but not here: http://www.kitm.se/sv/varmote-kitm-7-8-maj-2014-i-stockholm/
    Thanks!
    Abedi

    #243048

    Hey!

    Please adjust Ismael’s code to be following

    .single-post .small-preview  {
    pointer-events: none;
    }

    It will be applied only on single posts

    Cheers!
    Yigit

    #243173

    Thanks, it worked perfectly.
    Regards
    Abedi

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘How to remover the featured image link from small preview image?’ is closed to new replies.