x

Updated with new need: Weebly Promote contact popups

Ok, I finally figured out how to remove the Promote popup...(I can't seem to get rid of Mailchimp though...see comment) 

I do like the promote popups...Now I was wondering if it was possible to use any kind of additional coding to make certain they looked a certain way (or at least looked good) on mobile. See the way it displays...

image

I'd like to add the pop up back on to my site, but have it appear all at once without anything getting cut off...is that possible?

Original post request: I added a Promote popup on my site (surfgroundswell.com) ... it didn't look good on mobile, so i disconnected the app and republished...the popup still shows up...how do i get rid of it? thank

2,253 Views
Message 1 of 13
Report Inappropriate Content
12 REPLIES 12

also, i was testing using a mailchimp popup on a different page, had trouble making the code work...i tried inputting the code into the header, and it started working. I then deleted it to try something different, but it still pops up! what am i overlooking?

2,244 Views
Message 14 of 13
Report Inappropriate Content
Square

HI there. I'm not seeing the popup on your site. Is it on the homepage? 

2,240 Views
Message 14 of 13
Report Inappropriate Content

Thanks Bernadette,

I just changed my post with an update...I finally figured out how to remove the Promote popup...(I can't seem to get rid of Mailchimp on my other site though...see my previous comment) 

I do like the promote popups...I'm now wondering if it is possible to use any kind of additional coding to make certain they looked a certain way (or at least looked good) on mobile? See the way it displayed before I took it down...

image

I'd like to add the pop up back on to my site, but have it appear all at once without anything getting cut off...is that possible?

tia!

2,220 Views
Message 14 of 13
Report Inappropriate Content
Square

It might be possible to fix that with custom CSS. I'm surprised it's cutting cut off like that, though. Do you have any experience with HTML and CSS? It's possible a member of our Community could provide some help with that, although they'd probably need to see the popup on the live site.

2,219 Views
Message 14 of 13
Report Inappropriate Content

Hey Adam, re: experience, I've successfully followed instructions you guys at Weebly have given me to do html and css stuff. 

re: live site, i didn't want to put it back on my main site, but I put a similar quick popup here... testingfor91devco.weebly.com

it looks like this on two different phones...still shows the pic getting cut off on one, and not being able to see the whole popup on the other:

 imageimage

I'd like to see that pic! Smiley Happy or is it possible to make this popup like one of those floater tabs?

thanks!

2,216 Views
Message 14 of 13
Report Inappropriate Content

I checked the site for you but I only see a mailshimp ad.

2,207 Views
Message 14 of 13
Report Inappropriate Content

yes, i removed it...should i put it back to help troubleshoot?

2,190 Views
Message 14 of 13
Report Inappropriate Content

Yea, that would help. Thanks!

2,180 Views
Message 14 of 13
Report Inappropriate Content

ok, i installed it again on my test site at www.testingfor91devco.weebly.com

i'd like to figure out how to prevent the pic from getting cut off at top and bottom, and on some devices, i can't see the whole form...

also, a new problem has developed...underneath the all fruit text, i put some custom code for a floating feedback button...it was working until i put the promote form back on the site...suggestions as to how to keep both? or display the button after the promote form is submitted or "x"ed out? 

Thanks!

2,177 Views
Message 14 of 13
Report Inappropriate Content

They must share some similar css selectors for that to happen. Try this in Settings >  SEO > Header Code to see if it works on the live site:

<style>
    @Media screen and (max-width: 30em), screen, projection
    {
        .leadform--popup .leadform-widget-container.popup_50-50 .leadform-imagedrag
        {
            background-position: 50% 20% !important;
        }
        .leadform-popup-widget .leadform-popup-container.leadform-popup-container--split, 
        .leadform-popup-widget .leadform-popup-container.leadform-popup-container--50-50 
        {
            height: 80% !important;
            margin-top: 25px !important;
        }
    }
</style>

1,561 Views
Message 14 of 13
Report Inappropriate Content

thanks for your efforts...i copy and pasted the script into the header, but it didn't work...i think i did everything right...in case it matters or makes things easier, the main thing I want to do is zoom the picture out on mobile, or have it cropped in a way that it looks similar to what it looks like on desktop...it loses it's meaning with the guys head cut off...thanks!

1,556 Views
Message 14 of 13
Report Inappropriate Content

That's ok. Sometimes it takes a bit of trial and error. Try this instead, I tweaked it slightly. If it doesn't work, can you leave it in place on the live site so I can see what it's doing?

<style>
    @Media screen and (max-width: 800px)
    {
        .leadform--popup .leadform-widget-container.popup_50-50 .leadform-imagedrag
        {
            background-position: 50% 20% !important;
        }
        .leadform-popup-widget .leadform-popup-container.leadform-popup-container--split, 
        .leadform-popup-widget .leadform-popup-container.leadform-popup-container--50-50 
        {
            height: 80% !important;
            margin-top: 25px !important;
        }
    }
</style>

1,553 Views
Message 14 of 13
Report Inappropriate Content
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.