Okay
  Public Ticket #740952
Team Section
Closed

Comments

  • Michael started the conversation

    Hey there!

    I'm using the Team Carousel as in the Creative Demo. 
    Is there a way to determine how many pixels the team info panel (I believe the class is named team-profile-new) will slide up upon mouse-over?

  •  1,801
    Support replied

    Here is the code for hover scroll top:

    .team-profile-new {
        height: 200px;
        margin-top: 250px;
        padding: 20px;
        position: absolute;
        transition: all 0.4s ease 0s;
        width: 220px;
        z-index: 11;

    }

    .team-person-new:hover > .team-profile-new {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        margin-top: 130px;
        padding: 20px;

    }


    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Michael replied

    Thanks!

    Increasing the margin-top for the hover state did the trick for me.
    Great support as always!