Why this page exceed 960?

Hi guys,

Just wondering what is the reason why this page,

Exceed 960 width?

By the way it is under Twitter Bootstrap.
Can someone explain to me.

Thank you very much in advanced.

because in bootstrap-responsive.css you define the container width 1170px?

Yes as guido says, you have this:

@media (min-width: 1200px)
.span12 {
width: 1170px;
}

which tells the browser to expand to 1170 above 1200px.

Thanks guys.
I’ll try to fix that later.