Okay
  Public Ticket #2413464
Social Icons on Team Member Element
Closed

Comments

  • mkrupski started the conversation

    Is there a way to move the social icons to above the full bio in the team member element when using the meta below, bio modal setting? 

    I'm building a site in which the full bios are really long, so I would like to move the social icons to above the bio, but below their name and title. Is this possible? 

    Thanks! 

  •  2,979
    Andrew replied

    Hi there,

    There is no option to do that. Try the following custom css:

    .team_member_details .bio-inner .team-desc {
        display: flex;
        flex-direction: column-reverse;
    }
    

    Hope this helps.

  • mkrupski replied

    Oh that gets it close - it places the social icons in the exact spot I want them, but now the bio itself is displayed in reverse order...

    Is there any way to fix that? 

  •  2,979
    Andrew replied

    Hi there,

    Can we have a link to the page you set that so that we see if possible.

    Thanks.

  •   mkrupski replied privately
  •  2,979
    Andrew replied

    Hi there,

    Remove the earlier sent and try this:

    .team_member_details .bio-inner .team-desc {
        display: flex;
        flex-direction: column;
    }
    .team-desc .bottom_meta {
        order: -1 !important;
    }
    

    Kind regards.

  • mkrupski replied

    Worked perfectly. You guys rock. 

    Cheers, 

    Mike