Please help me. Looking at the mobile mode, my collapse hamburger menu always hides very far in the right. this makes the website look not responsive and I can’t figure out how to fix it. I think it worked till I added the footer so I will include it in the code.
https://github.com/akashpandya/akashpandya.github.io — full code
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="./css/line-icons.css">
<link rel="stylesheet" href="./css/style.css" />
</head>
<body data-bs-spy="scroll" data-bs-target=".navbar">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-white fixed-top"data-aos="fade-down">
<div class="container">
<img class="navbar-brand" src="./images/logo.png" alt="" width="120" height="80" />
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto px-2">
<li>
<a class="nav-link active" href="#Home">Home</a>
</li>
<li>
<a class="nav-link" href="#About-Me">About Me</a>
</li>
<li>
<a class="nav-link" href="#Whats-new">Upcoming</a>
</li>
<li>
<a class="nav-link" href="">Manga</a>
</li>
<li>
<a class="nav-link" href="">Anime</a>
</li>
<li>
<a class="nav-link" href="">Movies</a>
</li>
<li>
<a class="nav-link" href="">TV Shows</a>
</li>
<li>
<a class="nav-link" href="">Novels</a>
</li>
<li>
<a class="nav-link" href="#Contact">Contact Us</a>
</li>
</ul>
</div>
</nav>
<footer class="py-4">
<div class="container">
<div class="row ">
<div class="col-md-6">
<p class="mb-0">Copyright © 2020-2022. Designed by Akash Pandya</p>
</div>
<div class="col-md-6 icons">
<a href=""><img src="./images/instagram-logo-24.png" alt=""></a>
<a href=""><img src="./images/twitter-logo-24.png" alt=""></a>
<a href=""><img src="./images/facebook-circle-logo-24.png" alt=""></a>
<a href=""><img src="./images/linkedin-square-logo-24.png" alt=""></a>
3
Answers
please check weather jquery and popper are loaded before loading bootstrap.min.js.
try with following
In index.html file about section and get in touch section
data-aos="zoom-out-left"
anddata-aos="zoom-out-right"
not work properlyAbout section:
you can try this
And Contact section :
you can try this
index file
Add
overflow-hidden
class into these two element should fix your problems.