When using lower resolutions than 1024x768 browser scroll not working right. If you notice, when the resolution is smaller I can not see all the purple stripe.
I noticed that the body is at the top, which is weird because the entire page should be inside the body. I do not know if that influences anything.
开发者_如何学运维Url: www.amsdarquitetura.com.br
It's the negative margins you're setting on div#global. When the viewport is small enough, the negative margins are essentially hiding parts of your page.
Change #global CSS to:
#global {
margin: auto;
position: relative;
}
精彩评论