The title pretty much says what my issue is. I did a few google searches and couldn’t find anything helpful so I came here. Here is the link to the site: https://aquamarine-catharina-45.tiiny.site/
I changed from ".container" having the properties: position: fixed; and left: 35% to just margin-left: 35% thinking that may fix it but it didn’t.
edit: Pay no attention to the second page I’ve already fixed that.
3
Answers
You have to use overflow-y: auto. Depending on what section you want to scroll down you can put the overflow on. You can use it either on the body or in the container.
or
You have set the overflow-y property of the html element to hidden. Change it to visible.
In fact, something in your code prevents it from scrolling, could you share the HTML and CSS? Furthermore, it would be ideal for you to use @media (media queries) to style the site for other screen sizes, such as cell phones.