Need Some Input About Html/CSS

by 2 replies
3
To see the page I built thats in question LOOK HERE ...

What you will notice immediately is that on the right there is no scroll bar.........?

Isn't it supposed to have a scroll bar at least on the right side?

What is missing in my code to give it a scroll bar?
#website design #html or css #input
  • Hey,

    Sent you a PM about this. It's because no elements go below the fold.

    Cheers
    Carlo
  • your page isn't long enough but if you really must have a scrollbar at all times...

    html {
    overflow-y:scroll;
    }

    ...will do the trick. Throw that in your CSS file.

Next Topics on Trending Feed