センターセクションに特別な設定をする必要はありません。停止したいブロック要素はすべて、
position:fixed
にする必要があります。
例えば
<html>
<head>
</head>
<body>
This will stay on the top of the browser
window.
<div id="sidebar">
This will stay on the left.
</div>
<div id="content">
This will scroll normally.
</div>
</body>
</html>