Okay
  Public Ticket #1277062
Modal Team Member
Closed

Comments

  • Trevor started the conversation

    On the team member modules I have, when displaying in the modal window, dont allow the photo to go to the top. I've attached a screenshot. Also, as I scroll, the menu changes like I am not within the modal. Is there any way to fix this? or at worst just have a static menu ONLY within the modal popup?

  •  9,014
    Tahir replied

    Hey Again,

    This is the only possible solution. That is to hide the menu when the team member popup is open.

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    @media only screen and (min-width: 1000px) {
        .nectar_team_member_overlay .inner-wrap {
            top: 0px !important;
        }
        .nectar_team_member_overlay {
            z-index: 9999;
        }
    }

    Thanks


    ThemeNectar Support Team 

  • Trevor replied

    That worked beautifully. Thanks VERY much!