Click to See Complete Forum and Search --> : Scrollbar Help


hardcore_web
03-03-2006, 08:25 AM
How do I get rid of the bottom scroll bar?

Robert Wellock
03-03-2006, 08:28 AM
You don't it should be up to the user but typically you'd use JavaScript to remove the statusbar. Or do you mean a horizontal scrollbar?

hardcore_web
03-03-2006, 08:30 AM
take a look... www.geocities.com/humanslaughterhouse666/home

i don't want them to move all the over to the end of the page...
and
yes the horizontal scrollbar thats the bottom correct??? [dazed]

pcthug
03-04-2006, 02:26 AM
That is done with a frame, however you can still achieve this effect without having to endure the inaccessible flaws of conventional frames. A lil' css will do the job:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style type="text/css">
#frame-substitute {
overflow-y: auto; /* The imprortant stuff */
overflow-x: hidden; /* No more Horozontal ScrollBars */
width: 550px;
height: 400px;
}
</style>
</head>
<body>
<div id="frame-substitute">
<img src="../My Documents/Untitled-2.png" width="1152" height="838">
</div>
</body>
</html>