• Resolved locdbeauty

    (@locdbeauty)


    So I have a pop up for email subscribers from mailchimp. But the pop up is dysfunctional on the mobile site. A visitor cannot exit out of the pop up via mobile. It’s impossible on my mobile site, but I have seen other sites with the same theme have the capability. I contacted my host and mailchimp but they both told me to contact my developer. Can you look at this for me and tell me what I can do to fix it? Website is locdbeauty.com mobile site.

Viewing 12 replies - 1 through 12 (of 12 total)
  • Hi,

    It looks like the navbar is covering up the close button on mobiles. If the theme you are using has the option to add custom CSS code, add following CSS to move the close link down a little:

    @media only screen and (max-width: 980px) {
        .mc-modal {
            top: 90px;
        }
    }

    It should resolve the issue and the modal should appear something like this: http://prntscr.com/86xweb

    Cheers!

    Thread Starter locdbeauty

    (@locdbeauty)

    Oh you are awesome!! Where should I add it though? same place I added the code for the pop up in the footer?

    Thread Starter locdbeauty

    (@locdbeauty)

    That picture is perfect, that how I want it to look. I found something called stylesheet (style.css) in the editor and added your code there but it didn’t work πŸ™

    Hi,

    It looks like the code is added correctly but not taking priority over default styling. Try replacing the CSS code with following:

    @media only screen and (max-width: 980px) {
        .mc-modal {
            top: 90px !important;
        }
    }

    This should work. πŸ™‚

    Cheers!

    Thread Starter locdbeauty

    (@locdbeauty)

    Wow! That worked! I can see the closed button! But…. Now the close button does not work πŸ™

    Thread Starter locdbeauty

    (@locdbeauty)

    I can click as much as I want but it won’t go away πŸ™

    There seems to be a few JavaScript errors in your website: http://prntscr.com/87644y. That’s the reason the close button is not working. I’d advise contacting your theme and/or plugin developer with regard to the issue.

    Cheers!

    Thread Starter locdbeauty

    (@locdbeauty)

    Oh lord. My theme developer told me that they will charge me $60 an hour πŸ™

    Thread Starter locdbeauty

    (@locdbeauty)

    Is there anyone who can help me other than my developer. I really don’t want to have to change themes again…

    I’ve seen some JS errors in your website. Let’s do some tests. You could try deactivating all the plugins and seeing if the issue remains. If it is fixed, you can narrow down the conflicted plugin by reactivating all your plugins one by one.

    Other than that, you could also try contacting you plugin’s developer (if it’s not by your theme developers).

    Thanks!

    Thread Starter locdbeauty

    (@locdbeauty)

    Your tip worked! I was able to get it to work. Thank you Zehan do ALL your help!

    Glad to hear that! πŸ™‚

    Cheers!

Viewing 12 replies - 1 through 12 (of 12 total)

The topic ‘Pop up help’ is closed to new replies.