Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Cole Geissinger

    (@brainfestation)

    Hi Peter, the modal window is displaying because you have inserted some custom CSS that is ‘causing the window to display automatically.

    In the sourcecode of your site you have declared these styles:

    /* Popup Login Link */
    #geissinger_wp_modal_login_widget-2 a {
    font-size: 32px;
    }
    /* Popup Login Changes */
    #login-box {
        display: block;
    margin-left: -190.5px;
    margin-top: -280.5px;
        height: auto;
        position: absolute;
    }

    the line that says ‘display: block;’ is the issue. By default the HTML needs to be set to display:none, and then we use a JavaScript event to fadeIn the login. Removing this will stop the window from auto loading

    Thread Starter adfasdf

    (@peterglynn)

    Wonderful! That fixed both those problems!

    However, now the registration page is not appearing on the screen. Here’s a screenshot!

    <img src=”https://i243.photobucket.com/albums/ff26/Peterg1989/ScreenShot2013-07-30at93022PM.png&#8221; border=”0″ alt=” photo ScreenShot2013-07-30at93022PM.png”/>Screenshot

    Here’s where you can see it in action: Here

    Thanks for getting back so quickly!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Popping up on everypage reload and not closing after login’ is closed to new replies.