Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Predrag – WPMU DEV Support

    (@wpmudev-support1)

    Hi @nicksvicks,

    Greetings and thanks for posting on the forums.

    This is not an error but the CSS conflict with the theme you are using.

    1.the menus of the website are appearing above the popup

    This is because the theme you are using has applied higher z-index to the menu. To resolve this issue add the following CSS code in your site.

    .navigation #mainmenu li {
         z-index: 1;
    }

    2. I want to show a button below the image “Continue to site” , by clicking it the popup should be closed.

    To achieve this use the solution posted in the following reply and style it however you want.

    http://wordpress.org/support/topic/popover-close-button?replies=12#post-5037838

    3.I want to show close button on right top instead of left top .

    Add the following CSS code in your site to achieve it.

    #wrapper .visiblebox a#closebox {
        right: 0;
        left: auto;
    }

    Best Regards,
    WPMU DEV

    Thread Starter nicksvicks

    (@nicksvicks)

    but if I modify the plugin files to add a close button , changes made will be overwritten by update , and there is nothing like child plugin .

    Thread Starter nicksvicks

    (@nicksvicks)

    .navigation #mainmenu li {
         z-index: 1;
    }

    this code is disabling the menu on the website , seems there is an error in the theme.

    Plugin Support Predrag – WPMU DEV Support

    (@wpmudev-support1)

    Hi @nicksvicks,

    Thank you for your reply.

    but if I modify the plugin files to add a close button , changes made will be overwritten by update , and there is nothing like child plugin .

    Yes it will be overwritten as stated in the following reply.

    http://wordpress.org/support/topic/popover-close-button?replies=12#post-5037838

    Note: The changes made in the plugin will be lost when you update the plugin and you have to redo the changes.

    There is nothing like child plugin. I can try to develop a solution using another way if you really want to do it so that you don’t have to make changes in the plugin code and it will be update proof.

    this code is disabling the menu on the website , seems there is an error in the theme.

    I have tested it and it’s not disabling the menu.

    Which browser and OS are you using to test it?

    Could you please share me the screenshot of it?

    For screenshots, you can simply provide a link to an image through Google Drive, Dropbox, screencast.com, http://imgur.com/ or other image service. 🙂

    Regards,
    WPMU DEV

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘error in the popups’ is closed to new replies.