Short of adding unseen content of substantial height (screen resolutions can go much higher than what a 19' monitor is capable of), I don't think there is a way to do this in all browsers. A better approach would be to design your pages so that it doesn't look so odd if some have the vertical scroll bar and others do not. Perhaps it doesn't look all that odd now, it may just seem that way to you. In IE, the most widely used browser, all pages have the vertical scroll bar by default, even when not needed. In Fire Fox (recent releases) you can set the body or html elements to overflow-y:scroll; in the style, example using body:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
body {
overflow-y:scroll;
}
</style>
</head>
<body>
hi
</body>
</html>
Between IE and Fire Fox, you have taken in the vast majority of the browsing public.
Bookmarks