iPhone issue in Webform Builder -...

User 437873 Photo


Registered User
43 posts

The bottom of the form does not display on an iPhone or on an iPad.

http://a1apatio.com/contact/
User 187934 Photo


Senior Advisor
20,271 posts
Online Now

It's not an iphone issue it's a webpage issue. You can see it do the same thing in FX on a pc if you minimize your browser window.:)
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 437873 Photo


Registered User
43 posts

But why is it happening? What can I do to fix it?
User 1948478 Photo


Senior Advisor
1,850 posts

Terry Potter wrote:
But why is it happening? What can I do to fix it?

Your responsive WP page has a break point at a width of 900px. When the view port is wider than 900, everything works fine, but when you go below 900px width, all your added content breaks the page. This includes the Google map, which completely disappears, and the fixed-sized form which moves up and on top of your contact text, which you have placed in a table.

What you need to do, to begin with, would be:
1. Make the form responsive for compatibility with the otherwise responsive page.
2. Read up on the details about how to add content to this particular, responsive, wp page.

If I had more time right now, I would have taken a closer look and suggested specific coding changes but, alas, I don't...
User 187934 Photo


Senior Advisor
20,271 posts
Online Now

Per is correct and I see you have the form script inside a <p></p> tag. Better to place it inside a div and give the div an Id then apply the needed response css to make it lengthen with the screen reduction.
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 437873 Photo


Registered User
43 posts

Although I am pretty comfortable with html, I'm not familiar with the coding changes necessary to implement your suggestions in WP. When you get some time Per, I would really appreciate some help with this.

I know it's not your job, but again, any assistance is greatly appreciated.

Thanks
User 187934 Photo


Senior Advisor
20,271 posts
Online Now

This is only an example
@media screen and (max-width: 768px)
{
#mydiv{
height:90%;
width:50%;
}
}
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 437873 Photo


Registered User
43 posts

Thanks, but where does that go?
User 187934 Photo


Senior Advisor
20,271 posts
Online Now

You can place it in your style sheet or at the head of your page inside a style tag.
<style type="text/css">
<!--
body {
color:#000000;
background-color:#FFFFFF;
}
a { color:#0000FF; }
a:visited { color:#800080; }
a:hover { color:#008000; }
a:active { color:#FF0000; }

@media screen and (max-width: 768px)
{
#mydiv{
height:90%;
width:50%;
}
}
-->
</style>

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.