maisaguam Posted May 28, 2020 Share Posted May 28, 2020 Site URL: https://www.shopmaisaguam.com/ A few questions: 1) First, can anyone please visit my site on both mobile and desktop to see if pop ups are enabled? They are enabled on my end but when I refresh pages on my iPhone and MacBook they don't show... 2) Is there any way to add an image to the background of a mobile pop-up? I have this feature for the desktop version but for mobile visitors its just green with white text. 3) Is there any way for the mobile popup to mimic the placement of the desktop pop up i.e. popping up in the center of the page and not at the bottom? Link to comment
tuanphan Posted May 28, 2020 Share Posted May 28, 2020 I don't see any popup. Windows/Chrome/Dell Laptop Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
maisaguam Posted May 28, 2020 Author Share Posted May 28, 2020 (edited) Weird. It only seems to show when I go into Marketing -> Promotional Pop-Up Any other bug you think may be causing it not to show? Edited May 28, 2020 by maisaguam Link to comment
tuanphan Posted May 28, 2020 Share Posted May 28, 2020 ah okay, I see now. Q2. background image. Add to Home > Design > Custom CSS @media screen and (max-width:640px) { .sqs-slice-gallery-item.content-fill { background-image: url(https://beaverhero.com/wp-content/uploads/2020/05/artboard-1-.jpg); background-size: cover; background-position: center center; background-repeat: no-repeat; } .sqs-slice-gallery-item.content-fill img { visibility: hidden; } } Q3. @media screen and (max-width:640px) { .sqs-slide-wrapper[data-slide-type="popup-overlay"] .sqs-slide-container[data-slide-type="popup-overlay"] .sqs-slide { top: 50% !important; transform: translateY(-50%); bottom: unset; } } jaisequoia 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
calibratedconcepts Posted March 8, 2021 Share Posted March 8, 2021 I'm having the exact same two issues with this website: https://www.melwiggins.com/ Link to comment
tuanphan Posted March 19, 2021 Share Posted March 19, 2021 On 3/9/2021 at 12:42 AM, calibratedconcepts said: I'm having the exact same two issues with this website: https://www.melwiggins.com/ Hi. Have you tried above code yet? Also, on tablet, header sticky is white background. Do you want to change logo color or header color? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
calibratedconcepts Posted March 26, 2021 Share Posted March 26, 2021 I had tried it! But I emailed you and you got me sorted out. Link to comment
jaisequoia Posted November 29, 2021 Share Posted November 29, 2021 On 5/28/2020 at 4:29 AM, tuanphan said: ah okay, I see now. Q2. background image. Add to Home > Design > Custom CSS @media screen and (max-width:640px) { .sqs-slice-gallery-item.content-fill { background-image: url(https://beaverhero.com/wp-content/uploads/2020/05/artboard-1-.jpg); background-size: cover; background-position: center center; background-repeat: no-repeat; } .sqs-slice-gallery-item.content-fill img { visibility: hidden; } } Q3. @media screen and (max-width:640px) { .sqs-slide-wrapper[data-slide-type="popup-overlay"] .sqs-slide-container[data-slide-type="popup-overlay"] .sqs-slide { top: 50% !important; transform: translateY(-50%); bottom: unset; } } Tuan I'm looking for code to make the mobile pop up be full screen. I find it visually confusing with it just being on the bottom. Link to comment
paul2009 Posted November 29, 2021 Share Posted November 29, 2021 3 hours ago, jaisequoia said: I'm looking for code to make the mobile pop up be full screen. See my post below. In summary, this is by design because it is important that it is small on mobile: tuanphan and jaisequoia 1 1 About: Squarespace Circle Leader since 2017. I value honesty, transparency, diversity and great design ♥.Work: Squarespace Developer and founder of SF Digital, building the features Squarespace didn't include™. Content: Links in my posts may refer to SF Digital products or may be affiliate links. Catch up on all the release notes and announcements 2023 [for Circle members only]. There's a public version here too!If I helped, you can thank me by clicking one of the emojis below. If you prefer, you can buy me a coffee.Improve your online store with our extensions. Link to comment
skcmarketing Posted June 30, 2022 Share Posted June 30, 2022 I tried the code above (even the sample code) it's not working 😞 Link to comment
skcmarketing Posted June 30, 2022 Share Posted June 30, 2022 @tuanphan here is the site: https://www.bobabam.com/ The background image has text on it (not live text) so the only thing we need is the email subscription box and button. How it looks currently on Desktop: How it's looking on mobile: Even with this code (from above replacing the image with ours of course) @media screen and (max-width:640px) { .sqs-slice-gallery-item.content-fill { background-image: url(https://static1.squarespace.com/static/61e1b6342a00526cfd710af8/t/62be1d54dce37607bf14910d/1656626516684/Email+Pop+Up.png); background-size: cover; background-position: center center; background-repeat: no-repeat; } .sqs-slice-gallery-item.content-fill img { visibility: hidden; } } Link to comment
tuanphan Posted July 2, 2022 Share Posted July 2, 2022 (edited) On 7/1/2022 at 5:06 AM, skcmarketing said: I tried the code above (even the sample code) it's not working 😞 Try this code @media screen and (max-width:767px) { .sqs-popup-overlay-content .sqs-slide { position: fixed !important; top: 0 !important; } .sqs-slide-wrapper[data-slide-type="popup-overlay"] [data-slice-type="gallery"] .sqs-slice-gallery-item.loaded img { opacity: 1 !important; } .sqs-slide-wrapper[data-slide-type="popup-overlay"] .sqs-slide-container[data-slide-type="popup-overlay"] [data-slice-type="gallery"] { display: block !important; } .sqs-slide-wrapper[data-slide-type="popup-overlay"] [data-slice-type="gallery"] { z-index: 1000 !important; } .sqs-slide-wrapper[data-slide-type="popup-overlay"] .sqs-slide-container[data-slide-type="popup-overlay"] .sqs-slide-animation-ready .sqs-popup-overlay-close { z-index: 999999999; } } Edited October 13, 2022 by tuanphan X disappear Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
tuanphan Posted October 13, 2022 Share Posted October 13, 2022 Updated new code. To fix X close icon disappear Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment