Okay
  Public Ticket #1820009
Team Member Name on mobile
Closed

Comments

  • markp57 started the conversation

    When viewed on a phone I want the team names to be there always rather than on hover which does work well on those types of devices. Can you please help?

  •  8,996
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (max-width: 1000px) {
        .team-member[data-style="bio_fullscreen"] .team-meta h3,.team-member[data-style="bio_fullscreen"] .team-meta p {
            opacity: 1 !important;
        }
        .team-member[data-style="bio_fullscreen"] .team-meta {
            bottom: 40px !important;
        }
    }

    Thanks


    ThemeNectar Support Team