I am having an issue with the pagination display in the text. I would like it to appear below the text as a standalone item for better visibility.
Another problem arises when viewing the page on mobile devices - the hamburger menu displays behind the slider, but I want it to be in front of the slider.
Here is the HTML code:
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name='viewport' content='width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1'>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="swiper.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
<script type='text/javascript'>
$(document).ready(function(){
$('.menu-toggle').click(function(){
$('.site-nav').toggleClass('site-nav--open');
$(this).toggleClass('open');
})
})
</script>
</head>
<body>
<header>
<div class="container">
<div class="logo">
<ul>
<li><a href="#">SakaHapa</a></li>
</ul>
</div>
<nav class="site-nav">
<ul>
<li><a href="#"><i class="fa fa-home site-nav--icon"></i>HOME</a></li>
<li><a href="#"><i class="fa fa-question-circle-o site-nav--icon"></i>HOW IT WORKS</a></li>
<li><a href="#"><i class="fa fa-user-circle site-nav--icon"></i>PROFILE</a></li>
<li><a href="#"><i class="fa fa-cart-plus site-nav--icon"></i>PURCHASES</a></li>
<li><a href="#"><i class="fa fa-eye site-nav--icon"></i>POPULAR</a></li>
<li><a href="#"><i class="fa fa-envelope site-nav--icon"></i>CONTACT</a></li>
<li><a href="#"><i class="fa fa-power-off site-nav--icon"></i>Log Out</a></li>
</ul>
</nav>
<div class="menu-toggle">
<div class="hamburger"></div>
</div>
</div>
</header>
<div class="container">
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="slide-text">
<h2>Slide man</h2>
<p>Lorem Ipsum ...
Some CSS styling:
body{
background: #F0F8EA;
font-family: sans-serif;
}
.container{
width: 95%;
max-width: 1000px;
margin: 0 auto;
}
...
If you can provide assistance with these issues, it would be greatly appreciated.