Hello, the topic name pretty much covers it, but I'm looking for a method that allows me to hide a scrollbar which shows when the div text overflows, but still allow the user to scroll up and down the page, this information is housed within a div. I feel that the scrollbar in the middle of the site can be distracting when trying to read something long. Here is the scrollbox css code so far.
CODE
#scrollbox {
background-image: url("images/afade.gif");
background-repeat: repeat-x;
border: solid 3px;
border-color: #e3c992;
font-size: 20px;
margin-top: 4px;
margin-left: 4px;
margin-right: 4px;
margin-bottom: 4px;
color: #6d4c07;
font-family: sans-serif;
padding: 7px;
width: 95%;
height: 645px;
overflow:hidden;
text-align: left;
background-color: #e7e4d7;
/*background: #a57f4a url("images/coffee.gif") no-repeat bottom right*/
}
This post has been edited by Addiction2Code: 12 Jul, 2008 - 03:35 PM