Nice, I recognize the template, I always liked that one too.
The design is jumping around when the scrollbar appears in firefox, Mark’s got a great fix for that.
I can never remember the code snippet though?
Here’s a fresh googl-ee of Mark’s solution:
---------------------
html {
overflow-y: scroll;
}
This works in most browsers or yes for those that don’t support it you will need to use a height declaration but in doing that you always get a scroll-bar no matter what. With the overflow-y: scroll; method all you get is the space of the scroll bar appearing instead of a constant scroll bar which I personally think looks a bit better.