PDA

View Full Version : html (making scroll thingy :D) think it's called scroll bar


hentajus
01-08-08, 12:43
can some 1 please tell me how to make the scroll bar thingy just like right now on the right right here on majorgeeks... man thats a lot of rights :D

you know the one that makes the page go down....


THANK YOU VERY MUCH :major:major:major

Wookie
01-09-08, 09:14
What do you mean? You want it embedded in a web page? I believe you will need a frame to do that.

Publius
01-09-08, 09:29
Or a scrolling div:

<div style="HEIGHT:100px; WIDTH:50%; OVERFLOW:auto">
<table border=1 width=100%>
<tr><td>Fabulous Content</td></tr>
<tr><td> etc.</td></tr>
</table>
</div>

You can make it any width and height that you want. The OVERFLOW:auto makes it so that scroll bars are present when needed and hidden when not.

Hope this helps.