Initially, the URL ()
If you access the website on a mobile device (on desktop, scale down to width 665 px), you will notice a hamburger menu. It functions perfectly on desktop, allowing you to navigate by clicking on the "forside" and "showroom" links (other pages are yet to be uploaded). However, when attempting this on Google Chrome on an iPhone SE, it fails to work, redirecting to instead of /shoowroom or /forside.
How can this issue be resolved? What is causing this malfunction?
//CSS code snippet
body {
font-family: 'Open Sans', sans-serif;
margin: 0;
width: 100%;
}
header {
width: 100%;
background: none;
height: 0px;
line-height: 60px;
}
// Additional CSS properties...
}
<!DOCTYPE HTML>
<html lang="da">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
//HTML and meta tags...
</head>
<body>
<header>
<button class="hamburger">☰</button>
<button class="cross">˟</button>
</header>
<nav>
// Navigation elements...
</nav>
<article>
<div class="container">
<div class="slideshow">
// Slideshows and images...
</div>
</div>
// Other article details...
</article>
<footer>
// Footer section with social media icons
</footer>
<script>
// Script for slideshow functionality and toggling menu
</script>
</body>
</html>
^ This represents the HTML structure for "forside," along with the associated CSS file and jQuery script used on the site.