I am experiencing difficulty in getting my HTML page to scroll properly.
Despite trying various CSS properties for Overflow (such as scroll, auto, visible, etc.), I have been unsuccessful in making the page scrollable. It seems like there might be a simple mistake that I am overlooking. Here is some additional text to meet the word count requirement and make this content unique.
html * {
font-family: Gill Sans MT!important;
overflow: visible;
}
body {
background-color: #3d3c3a;
color: #333333;
font-family: "Gill Sans";
overflow-y: auto;
}
.logo {
float: left;
position: fixed;
}
.topnav {
overflow: hidden;
background-color: #333;
padding-left: 10px;
padding-top: 10px;
padding-bottom: 10px;
padding-right: 10px;
margin-top: 15px;
margin-left: 300px;
position: fixed;
}
/* More CSS code here */
I either do not see a scroll bar at all or an unusable grey one appears.