Okay
  Public Ticket #2853219
Team member
Closed

Comments

  •  1
    humanncomms started the conversation

    Hi there,

    I was wondering if you could please help me change a couple of things here? 

    1. Stop the zoom on the feature image
    2. Stop the zoom on the team image in the bio modal
    3. Under the feature image, I want the name before the job title
    4. I'd like the name and job title to be centered, while leaving the other copy above left aligned.

    Thank you :)

  •  1,878
    Judith replied

    Hi There,

    Thanks for contacting us.

    Please send in your admin login credentials so that we may looking into this further.

    Thanks.


  •  1
    humanncomms replied

    Hi Judith,

    This is the URL concerned. What do you mean the admin creds?

    http://143.244.134.18/who-we-are/

    Thanks
    Emma

  •  8,844
    Tahir replied

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    /* turn off zoom on thumb */
    .team-member[data-style="bio_fullscreen_alt"]:hover .team-member-image-inner {
        -webkit-transform: scale(1) !important;
        transform: scale(1) !important;
    }
    /* remove zoom on bio image */
    .nectar_team_member_overlay .team_member_image {
        -webkit-transform: scale(1) !important;
        transform: scale(1) !important;
    }
    /* move name to first column */
    .team-member .team-meta {
        display: flex;
        flex-direction: column-reverse;
    }
    /* center the text  */
    .nectar_team_member_overlay.open .team_member_details h2, .nectar_team_member_overlay.open .team_member_details .title {
        text-align: center;
    }

    Thanks


    ThemeNectar Support Team 

  •  1
    humanncomms replied

    That's wonderful, thanks for your help :)