• Popbox appears when clicked on the “login” button. The popbox appears behind the header (menu). Any help would be appreciated.

    • This topic was modified 4 years, 7 months ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not a Requests and Feedback topic

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello.

    Paste this in the Custom CSS tab under Appearance > Customize

    #vibe_bp_login {
        z-index: 10000;
    }

    If you haven’t edited your theme at all and the issue appears also when the theme’s styles are unminified it could be a theme bug and you should inform the theme’s developer so they can check it out.

    Hi @meskiler,

    You need to update CSS property z-index: 100; to z-index: 99999; in your theme style sheet (path: https://armonatraining.com/wp-content/themes/wplms/assets/css/style.min.css)

    Old Code:
    
    #vibe_bp_login {
        display: none;
        width: 240px;
        position: absolute;
        right: 0;
        top: 36px;
        background: #232b2d;
        border-radius: 2px;
        opacity: 1;
        z-index: 100;
        margin: 0;
        padding: 20px;
        border: none;
        font-size: 12px;
    }
    Updated Code:
    
    #vibe_bp_login {
        display: none;
        width: 240px;
        position: absolute;
        right: 0;
        top: 36px;
        background: #232b2d;
        border-radius: 2px;
        opacity: 1;
        z-index: 99999;
        margin: 0;
        padding: 20px;
        border: none;
        font-size: 12px;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Log in Pop box is behind the header’ is closed to new replies.