Disable hover on blog posts

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #31006
    Marilyn Crofts
    Participant

    How do I disable the title and category content when hovering over a post image?

    #31010
    Veena
    Moderator

    Pls try the below custom CSS in themeoptions > custom CSS

    .post.type-post .image-info {
        pointer-events: none;
    }
    .post.type-post .image-info-buttons {
        display: none !important;
    }
    
    #31011
    Marilyn Crofts
    Participant

    Thank you, that helped but I ended up tweaking it to this:

    .image-info .terms {display:none;}

    .image-info .post-title {display:none;}

    a.lightbox-link.button.transparent {display:none;}

    .image-info .image-info-buttons .post-link {margin-left:0px}

    Thank you for the help!!

    M

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Disable hover on blog posts’ is closed to new replies.