I'm currently working on a responsive website, but I am facing challenges with the placement of the slideshow dots. When I switch to the device toolbar, they seem to change position. I have tried various methods such as using relative and absolute units, but none have been successful. I have searched online for solutions, but unfortunately, I haven't found anything helpful.
https://i.sstatic.net/NlFtg.png
Here is how the dots shift when I toggle to the device toolbar:
https://i.sstatic.net/lQyq2.png
You can see that the positioning of the dots changes, which is not the behavior I desire.
This is my current code:
HTML:
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>EatManger</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="query.css">
</head>
<body style="background-color:purple">
<!-- Your HTML content here -->
<script src="script.js" charset="utf-8"></script>
</body>
</html>