The iOS platform is experiencing issues with displaying the entire page, making it difficult to

Struggling with my website for Freecodecamp. Works fine on desktop, but iOs is a nightmare. My contact page isn't showing at all, and 75% of the bottom is cut off. Even worse, I can't click on what's visible. Help needed! Only tested on iPhone 7+. Markup for the problematic page below, along with the CodePen link to the entire site.


    <div id="parralax4" class="img-responsive">
    <div class="container">
    <div class="row formtitle">
    <div class="col-sm-3">
    <h2 class="formtitle1 raleway">Contact Us</h2>
    <p class="raleway">Please use the contact form...
    </div>
    <form id="xform">
    <div class="row">
    <div class="form-group col-sm-4">

    <label for="name"></label>
    <input type="name" class="form-control" id="name" 
     required placeholder="Enter name">
    </div>
    </div>
    <div class="row">
    <div class="form-group col-sm-4">
    <label for="email"></label>
    <input type="email" class="form-control" id="email" 
    required placeholder="Enter email">
    </div>
    </div>
    <div class="row">
    <div class="form-group col-sm-6">
    <label for="Message"></label>
    <textarea class="form-control" rows="5" id="message" 
    required placeholder="Your message"></textarea>
    </div>
    </div>
    <div class="row">
    <div class="col-sm-2">
    <button type="submit" class="btn btn-md btn-success">Submit</button>
    </form>
    </div>
    </div>

My CodePen

Desperate for any assistance. Been tackling this challenge for hours now.

Answer №1

Successfully resolved the issue! Through a process of elimination, I decided to host the site outside of Codepen and it displayed perfectly on iOS devices. It turns out the problem was with Codepen in combination with iOS.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

I am having trouble getting the color, metalness, lights, and shaders to work properly in Three JS on my

I attempted to create a simple code using Three.js for a red colored torus with a point light and a textured surface, but unfortunately, all I achieved was a black torus that rotates. It seems like the elements in this code are not functioning as expecte ...

The header row in HTML tables sometimes vanishes unexpectedly after sorting the table

Upon filtering the table, I noticed that the header disappears sporadically. The issue is that the table header row should remain in place regardless of whether or not the characters used for filtering are present in the table rows. In Example 1: When fil ...

Use of absolute positioning resulted in the disappearance of the element

Can anyone assist with resolving the issue I am encountering? I currently have three nested divs as follows: <div class="section"> <div class="parent"> <div class="child"> Some random text. </div> </div> </div> To adj ...

The jQuery .find() method was not able to locate a valid

When implementing Bootstrap 4 nav tabs on my page, I encountered a situation where some tabs have embedded YouTube players. To address this issue, I created a function to detect when a tab is clicked and stop the video playback if the previous tab had a pl ...

<div.content> </div.content> - Structure

I recall encountering this code before but I can't remember where: <div.main> // .... </div.main> <div.secondary> // .... </div.secondary> Could someone please clarify for me what this syntax is referred to as and what ...

Creating a loop to dynamically generate HTML input elements for ProcessingJS

Utilizing HTML input fields to manipulate a sketch, I am now aiming to create a loop to produce multiple inputs. var uivars = { tA: "40", // defining initial values tB: "10", }; Subsequently referencing those variables in the sketch: <script type ...

Difficulty encountered with cURL while attempting to submit information to a Gravity Form on an external website

I am managing two DISTINCT websites: Website A: An interactive Wordpress site featuring a Gravity Form. Website B: A separate non-Wordpress site that hosts a basic form - the information collected from this form needs to be transferred to Website A' ...

Adjusting the gridview headers to line up with a specific item and shifting the content of the item to the right

I am struggling with aligning the header and content in my gridview. I want the shirts to be underneath the header item, with the description moved to the left and the price 336 moved to the right. Something like this: https://i.sstatic.net/2i2IR.png Her ...

Is there an easy method to verify if the local storage is devoid of any data?

Query is named aptly; seeking to verify in a conditional statement. ...

Within jQuery lies the power to perform multiplication operations effortlessly

I'd like to accomplish this using jQuery: var menuItems = document.getElementsByTagName("li"); for (var k = 0; k < menuItems.length; k++) { if (menuItems[k].className == "menu") { var child = menuItems[k].firstChild; if ...

What could be causing the TailWind CSS Toggle to malfunction on my local server?

While working on designing a sidebar for a ToDo page using Tailwind CSS, I encountered an issue with implementing a toggle button for switching between dark mode and light mode. In order to achieve this functionality, I borrowed the toggling code snippet f ...

Understanding the behavior of CSS float (even after thorough examination of W3C documentation)

I am currently facing an issue related to the float property and have provided a snippet of code below for reference. My goal is to achieve a two-column layout using floats. While I am familiar with other methods to achieve this layout, I am specifically i ...

Loading content onto a webpage using AJAX

I am currently facing a challenge while attempting to incorporate a file on my server using AJAX. The issue I am encountering is that it disrupts the functionality of my PHP code. The AJAX is implemented on the following page: <div id="content&quo ...

Node Express app issue: Only one page is not having CSS applied

I've been working on a node application that utilizes Handlebars.js (hbs) as the html templating language. In my project, I have a CSS file stored in a public folder. The .hbs files within the 'views' folder successfully link to this CSS fil ...

Tips for designing a table with a stationary first column in HTML/CSS

I am looking to design a table that can be horizontally scrolled with a dynamic number of columns. The goal is to keep the first column fixed/frozen while scrolling horizontally. I attempted to achieve this using the following CSS, which successfully keeps ...

A small space underneath the <a> element nested within a <li> tag within a navigation bar

As a new programmer, I am currently working on creating a navbar. However, I have encountered an issue where there are small gaps underneath the user when my cursor hovers over it. There is a white gap under the user element. I expect that the hover back ...

Symfony 3 - Assetic dump functions properly in development environment but encounters issues in production environment

Recently, I have started working with Symfony 3 to develop a web application. In order to consolidate my CSS and JS files, I decided to use the Assetic bundle in dev mode, which seemed to be functioning properly without any issues. However, when I switche ...

Is the Ajax call being triggered unexpectedly?

I've been working on an Ecommerce website and everything was going smoothly until the update_cart (quantity) code started submitting my form instead of updating it. I've tried making changes and even moving it outside the form, but the issue rema ...

Jquery for controlling the navigation menu

I'm new to JavaScript and facing 3 challenges: 1. When I click on the parent <li>, the correct content of the child <sub> does not show up. Each category like "colors, shapes, sizes" should have corresponding child categories like "green, ...

Steps for making a yii2 inline checkbox listWould you like to learn

I posted my issue on the yii2 forum, but unfortunately, I did not receive any help. It seems like no one knows the answer to my problem. Here is a brief overview: I want to achieve the following: <label class="checkbox-inline"><input type="chec ...