Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #278406

    Hi,

    I am using the html code from Mailchimp, and pasting it in a code block in Enfold. The “subscribe” button is not showing up. I have searched on this forum and found many people with the same problem. I tried the solutions that worked for them, but their solutions are not working for me.

    In the Enfold code block, I have tried enabling checkboxes, etc, and have tried several different entries in the “Code Wrapper Element”. But nothing appears to have any affect.

    Cheers

    #278425

    Hey!

    Try adding this code to the Quick CSS:

    #mc_embed_signup .clear {
    display: block;
    visibility: visible;
    height: auto;
    width: auto;
    }

    Cheers! 
    Josue

    #278444

    Hi,

    Unfortunately that didn’t work. It was something I had tried before when I searched for a solution in the forum.
    Do I need to put something in the “Code Wrapper Element” or click on any of the check boxes in the code block perhaps?

    Regards

    #278447

    Update!

    This is very odd. When the window size is large, like on a desktop, the subscribe button will not show. But as I reduce the width of the window, at some point, the subscribe button shows up. It seems to occur the same time that the menu switches to the mobile versions. Perhaps this will help point out what the issue is?

    Cheers

    #278451

    Another Update:

    When I remove the following code from the Quick CSS, the subscribe button shows up properly:

    @media only screen and (max-width: 767px) {
    div#layer_slider_1 {
    margin-top: -82px;
    }

    The above code was from a previous support request, which was to fix the behavior where the content goes lowers (by 82px) when the menu switches from normal to mobile.

    So now, the subscribe button is there, but the previous problem is back. Is there a way of having both things work?

    Cheers

    #278457

    Hi,

    So I tired moving the code to fix the subscribe button above the code to fix the page shifting down. It all seems to work now!

    Like this:
    #mc_embed_signup .clear {
    display: block;
    visibility: visible;
    height: auto;
    width: auto;
    }

    @media only screen and (max-width: 767px) {
    div#layer_slider_1 {
    margin-top: -82px;
    }

    Cheers

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Mailchimp subscribe button not showing up’ is closed to new replies.