Okay
  Public Ticket #3563499
Meta below, bio modal Team arrangement
Closed

Comments

  •  3
    ePrintDesign started the conversation

    The Team Member is not in the correct order for Meta Below, Bio Modal. Name needs to be on top to match Meta Below (on other cells)

  •  2,741
    Andrew replied

    Hi there,

    Thanks for writing to us.

    To make the changes as requested, you will need to add some custom CSS code. To do this, please follow these steps:

    From your WordPress dashboard, Navigate to Salient > General Settings > CSS/Script Related. In the custom code area, insert the provided CSS snippet:

    .team-member[data-style=bio_fullscreen_alt] .team-meta {
      display: flex;
      flex-direction: column
    }
    .row .team-member[data-style=bio_fullscreen_alt] h5 {
      display: flex;
      order: 1;
    }
    .row .team-member[data-style=bio_fullscreen_alt] .nectar-cta {
      order: 3
    }
    

    Once the code is added, save and refresh the page to see if the change has been applied. In case it helps, please check this section from the documentation on CSS/Script Related. If this does not work as expected or If you have any further questions or need additional assistance, don't hesitate to write back, I'm happy to help. 

    Kind regards,

  •  3
    ePrintDesign replied

    Thank you that worked fine. How do I make "Meta Below" and "Meta Below Bio Modal" match? It does seem strange that they are formatted differently. I would like them to look identical.

  •  3
    ePrintDesign replied

    Inside the BioModal page the Name is in the wrong order. This was not happening in the previous version of Salient.

    Attached files:  Screen Shot 2024-01-18 at 10.56.54 am.png
      Screen Shot 2024-01-18 at 10.56.19 am.png

  •  2,741
    Andrew replied

    Hi again,

    Thank you for getting back to us.

    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):

    .nectar_team_member_overlay.open .team_member_details .bio-inner {
      display: flex;
      flex-direction: column;
    }
    .nectar_team_member_overlay.open .team_member_details h2 {
      order: 1;
    }
    .nectar_team_member_overlay.open .team_member_details .title {
      order: 2;
    }
    .nectar_team_member_overlay.open .team_member_details .team-desc {
      order: 3;
    }
    

    Try this and let us know it goes.

    Thanks,