I'm facing an issue where the footer field I add under a div with an absolute value escapes on both mobile and desktop. Additionally, the iframe does not have full height. Any suggestions on what I should do?
All the specifics are provided in the attachment.
When I put a footer beneath the div that's set to be absolutely positioned, it seems to overflow on mobile and desktop views. Plus, the height of the iframe isn't displaying correctly. Can you guide me on how to fix this?
Please refer to the attached details for more information.
Attach:
My Code:
.contact-form {
position: absolute;
z-index: 100;
left: 0;
right: 0;
margin-top: 20em;
}
.form {
background: #fff;
border-radius: 1em;
padding: 3em;
}
.maps {
z-index: 0;
position: relative;
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
width: 100%;
overflow: hidden;
margin-bottom: -1em;
}
.maps iframe {
width: 100%;
overflow: hidden;
height: 100vh;
}
thank you so much this works little bit but this time it looks like this. Vikas Katal