Pop-up forms no longer responsive? -...

User 187934 Photo


Senior Advisor
20,271 posts

I thought there was one somewhere but I couldn't find it. I never use that one.:lol:
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 271657 Photo


Ambassador
3,816 posts

When I first put the pop-up form on the site, I had a link on every page iin the footer and it worked (responded) just fine.
It was up and running for a week or so (I have witnesses! :lol:), then I thought maybe all those forms would slow the site down so I removed them. Made a new form and put the link only on the contact page. :(
I love deadlines. I like the whooshing sound they make as they fly by. (Douglas Adams)
https://www.callendales.com
User 187934 Photo


Senior Advisor
20,271 posts

Are you sure it was being responsive? You posted with us in the thread.
http://www.coffeecup.com/forums/web-for … esponding/
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 271657 Photo


Ambassador
3,816 posts

That was before I created this site, and I just assumed that tweaks/changes had been made to the FB since the last time I had used it, which was before that post. This most recent site is the first time I've used the pop-up menu.
I tested it on several devices and was relieved to see it worked fine on a friend's ipad as well as my client's iphone (since I have no Apple devices to test with).
Are we all in the Twilight Zone? :o
In the FB settings, it even has a percentage width and no height... that would seem to imply a non-static size.

I guess I'll have to do the skinny form idea for now and hope responsiveness returns to the pop-up option.
It seems odd that a responsive form option switches to fixed width when embedded in a responsive site. It seems CC would have a warning that a responsive template will no longer be responsive if the pop-up option is selected. ;)
I love deadlines. I like the whooshing sound they make as they fly by. (Douglas Adams)
https://www.callendales.com
User 187934 Photo


Senior Advisor
20,271 posts

I have a popup contact form on a site and I made it skinny to make it work with phones because it wasn't responsive. I haven't had the time to get it responsive yet.
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 187934 Photo


Senior Advisor
20,271 posts

Add this to the head of your page that has the link to the popup form to make the colorbox popup responsive. I forgot this script existed.
<script type="text/javascript">
// Make ColorBox responsive
jQuery.colorbox.settings.maxWidth = '95%';
jQuery.colorbox.settings.maxHeight = '95%';

// ColorBox resize function
var resizeTimer;
function resizeColorBox()
{
if (resizeTimer) clearTimeout(resizeTimer);
resizeTimer = setTimeout(function() {
if (jQuery('#cboxOverlay').is(':visible')) {
jQuery.colorbox.load(true);
}
}, 100);
}

// Resize ColorBox when resizing window or changing mobile device orientation
jQuery(window).resize(resizeColorBox);
window.addEventListener("orientationchange", resizeColorBox, false);
</script>
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.