Staff profile thumbnail – disable hover "view details"

Support Forums for LiveMesh Themes & Plugins Forums Invent Theme Support Staff profile thumbnail – disable hover "view details"

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #22901
    Ixinho
    Participant

    Hello,
    how i can disable “view details” button and faded effect when i hover staff profile thumbnail?
    Thank you in advance

    #22913
    Veena
    Moderator

    You can use the below custom CSS in themeoptions –

    .post-snippets .type-staff .img-wrap .type-info .button {
        display: none;
    }
    .post-snippets .type-staff .img-wrap:hover .image-overlay {
        background-color: rgba(0, 0, 0, 0);
    }
    
    #23075
    Ixinho
    Participant

    Hello phoenix thank you.
    I would like to remove title from the thumbnail and have picture static, without any animation. How do i do that? : )

    #23087
    Veena
    Moderator

    Pls use the below custom CSS –

    .post-snippets .type-staff .img-wrap img {
        -webkit-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
        -webkit-transition: none !important;
        -moz-transition: none !important;
        -ms-transition: none !important;
        -o-transition: none !important;
        transition: none !important;
    }
    .post-snippets .type-staff .img-wrap .type-info {
        display: none;
    }
    
    #23088
    Ixinho
    Participant

    works like a charm, thank you : )

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Staff profile thumbnail – disable hover "view details"’ is closed to new replies.