Trouble with Dual Scrollbars

Hey there! I'm currently working on building a website using Enjin, but I'm running into some trouble with the scrollbar. If you take a look at my site, you'll notice that there are two scrollbars showing up and I only want one.

I've tried using overflow: hidden, overflow-x: hidden, and overflow-y: hidden, but none of them seem to be doing the trick.

You can check out my website here:

Here's the code I'm using: https://codepen.io/AndriusTAP/pen/wvMpgbp

Answer №1

If you want to prevent overflow in the body-wrap-3 div, consider adding overflow-y: hidden; to its CSS class.

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

The value in the textarea will stay unchanged even after the form has been submitted

I recently resolved my previous issue, but now I am seeking advice on how to prevent a textarea from clearing its input after submitting a form. You can view the jsFiddle here: http://jsfiddle.net/rz4pnumy/ Should I modify the HTML form? <form id="for ...

Struggling with Bootstrap's responsive design: Ensuring images remain anchored at the bottom of a div

I recently integrated the Bootstrap product example into my website, located at https://getbootstrap.com/docs/5.0/examples/product/. Everything works well except for a minor issue I encountered on iPads or when zooming in on computers - the images on the w ...

Is it possible to display specific sections of a website by using CSS selection?

What is the most efficient way to display only specific elements on a webpage? For instance, if we want to show only the headlines on a news site without any other content. I am looking for a way to target elements using CSS so that only those selected i ...

Is there a delay when dynamically filling out an input field in a form with the help of the jquery .keypress() function?

I have a form that I want to populate dynamically with the values from another form. It's almost working as intended, but there seems to be a delay of some sort. For example, if I enter "ABCDE" in field1, field2 will only populate with "ABCD". It ne ...

I am having trouble getting IF statements within an onchange function to properly execute when using Javascript

My goal is to use JavaScript to trigger a function whenever a select dropdown menu undergoes a change. This is the HTML structure: <select id="select" onchange="characterchange()"> <option value="spidey">Spider-Man <option value="panth ...

What are some solutions for ensuring that the dots on a slideshow function automatically?

My attempt to showcase an automated slideshow seems to be partially successful. The images are changing as intended, but the dots below aren't functioning properly. Although clicking on a dot triggers the desired action, I am aiming for all dots to tu ...

When the first Div is clicked, can it move to the end of the list?

I have designed a collapsible tab and I would like to make some modifications. I want it so that when the user clicks on the first tab, it will move to the last position in the collapsible list, and the same should happen for the other tabs as well. For ex ...

Submitting a multipart form via AJAX from a textarea and input fields

After attempting numerous JS codes to submit a form with multiple pieces of data (2 files and 1 textarea), I have not found a solution that works effectively. So, how can we use AJAX to send form data that is not empty to PHP? <form method="post" enct ...

What could be causing my bootstrap navbar-toggler button to be unresponsive?

I have created a responsive navbar that displays items on a large screen and a toggle button on a small screen to reveal the navabar items. However, I am facing an issue where the toggle button does not work when clicked on a small screen. Any ideas on wha ...

Guide to utilizing the bootstrap flex method for ensuring the inner box occupies the entire height of its parent container

Is there a more flexible solution than setting the parent element to relative and the child to absolute? Kindly refrain from marking this question as a duplicate of Make flexbox children 100% height of their parent I tried the method suggested by @David ...

What is the most efficient way to retrieve an image from a database using its unique ID while incorporating CSS

My database table consists of the following columns: ID Nome Country Imagem 1 John USA images/######.jpg 2 Ana USA images/######.jpg 3 ## ## images/######.jpg How should I begin my code? I am looking to retrieve the image based on the ...

I'm having trouble getting my footer to stay at the bottom of the page

Struggling to get my footer to stay at the bottom on my blog pages, no matter what I try: Every time the social media section appears, the footer slides up... Can't figure out why... Appreciate any assistance! ...

Challenges faced with FormData during AJAX image uploads

I'm having trouble uploading an image via AJAX from a form. The console keeps showing me that the data is empty and I'm not sure how to get FormData to work correctly. Here's the error message: form.php?f3_file=:362 Uncaught ReferenceError ...

Display a div when collapsing in Bootstrap for screen widths of 991px or smaller

I am currently working on optimizing the mobile version of my website using Bootstrap. There is a div element that is taking up too much space on the page, and I would like to hide it on page load for screen widths of 991px or less. I want users to have th ...

Express displays HTML code as plain text

I am currently facing an issue where I am trying to display an html table on /guestbook.ejs and then redirect it to /guestbook. However, the content of my guestbook.ejs file is being displayed as plain text rather than rendering the HTML code. Below is th ...

Trouble with truncated dropdown menus in Bootstrap 4

I've encountered an issue with all dropdown menus in my application. I recently upgraded to Bootstrap 4, and in the previous version (v3), the dropdowns were displaying properly. However, they now appear like this: https://i.sstatic.net/zFLgk.png Us ...

Arrange image, icon, and title in Bootstrap navigation bar

index.html <div class="collapse navbar-collapse" id="navbarSupportedContent"> <ul class="navbar-nav mr-auto"> </ul> <span class="navbar-text" s> <ul class="navbar-nav mr-auto ...

How to align text to the right in a Bootstrap 5 card header

I'm facing an issue with a Bootstrap 5 card where I want to align certain content in the header to the right and some to the left. Despite my efforts, everything remains left-aligned. Here's a snippet of my code: <div class="card"& ...

What is the method for utilizing data binding to modify a portion of a class name string with an ISO country code of your choice

Is there a way to dynamically change the country flag icon displayed on an element using the flag-icon stylesheet? This CSS provides country flags based on ISO codes, like so: <span class="flag-icon flag-icon-gr"></span> This code would displ ...

A guide to showcasing tabs as a navigation menu based on media size using AngularJS

Help needed with creating a navigation menu that includes nav-icons on specific media screen sizes. The goal is to display all tabs as a list when clicking on the nav-icon. An attempt was made to implement a navbar, but it interfered with the tab styling. ...