View Full Version : Em. I need some scroll box help, please.


tweaker
03-01-2005, 12:40 AM
Apparently, my scroll box tag is not closed or something; I can't figure it out. Argh.

If you look here http://free.hostdepartment.com/o/odditiesofthemind/explosion.html#, and you scroll down all the way in my scroll box, you'll see some text that the webhost put there. I want that outside of the box.

This is the html I have: <div align=center><div style="width:220px; height:185px; overflow:auto;" class="SCROLL; BORDER";>
<table><tr><td width="115"valign="top">
News<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>

<p><br><br><br>
<style type="text/css">
body{scrollbar-face-color:#white;scrollbar-shadow-color:white;
scrollbar-highlight-color:#white;scrollbar-3dlight-color:grey;
scrollbar-darkshadow-color:#white;scrollbar-track-color:#white;
scrollbar-arrow-color:white}
</div style></td></tr></table></div align></div>

Any help, please?

Thanks.

pb&j
03-01-2005, 01:01 AM
1. this part...

<style type="text/css">
body{scrollbar-face-color:#fff;
scrollbar-shadow-color:#fff;
scrollbar-highlight-color:#fff;
scrollbar-3dlight-color:#c0c0c0;
scrollbar-darkshadow-color:#fff;
scrollbar-track-color:#fff;
scrollbar-arrow-color:#fff;}
</style>

should be up in the HEAD area of your coding. and this is the rest of your coding fixed up...

<div align="center">
<div style="width:220px; height:185px; overflow:auto;">
<table><tr><td width="115" valign="top">
News
<br>
</td></tr></table>
</div>
</div>

hope that helps. take note of the differences and changes.

tweaker
03-01-2005, 01:10 AM
All right, thanks a lot. =D