Okay
  Public Ticket #2520287
Team member titles
Closed

Comments

  •  4
    mkamara started the conversation

    Hi,

    Is there a way to remove the title for the Team Member module. I am using the 'meta overlaid, bio modal' setting and would like to trigger the modal bio with just the team member image.

    can i also change the color of the overlay and opacity.

    Thanks.

    M

  •  2,965
    Andrew replied

    Hi M,

    - You can leave the field empty on team member element

    - Add the following custom css to change overlay color on hover:

    .team-member[data-style="meta_overlaid"] .team-member-overlay, .team-member[data-style="bio_fullscreen"] .team-member-overlay {    background-color: green;
    }
    

    Thanks.

  •  4
    mkamara replied

    Thanks, but when i leave the fields empty. It replaces the empty title with 'Name' when I publish.
    any other ideas?

  •  4
    mkamara replied

    And aslo, how do i set the value of the opacity

  •  2,965
    Andrew replied

    Hi there,

    The following will hide the title:

    .nectar_team_member_overlay .team_member_details .bio-inner {
        display: none;
    }
    

    Opacity:

    .team-member[data-style="bio_fullscreen"]:hover .team-member-overlay {
        opacity: 0.7;
    }
    

    Thanks.

  •   mkamara replied privately
  •  2,965
    Andrew replied

    Hi there,

    Use the following css:

    .team-member[data-style="bio_fullscreen"] .team-meta h3 {
        display: none !important;
    }
    

    Thanks.

  •   mkamara replied privately
  •   mkamara replied privately
  •  2,965
    Andrew replied

    Hi there,

    The css will hide the name if it is set. We can close the ticket if the issue is resolved.

    Thanks.