Aelita_Lyoko72
09-04-2004, 04:50 PM
How do I make scroll bars? The site doesnt say! :rant:
|
View Full Version : Help! Scrollbars? Aelita_Lyoko72 09-04-2004, 04:50 PM How do I make scroll bars? The site doesnt say! :rant: kittycat 09-04-2004, 06:22 PM A scrollbar will appear when the content is greater than the window that contains it. If you want to make a div scroll, look at the div page: http://www.lissaexplains.com/html7.shtml If you want to change the scrollbar colours look on the CSS page (if you scroll down a bit it is there) http://www.lissaexplains.com/css.shtml Lucyferstarxox 09-04-2004, 10:44 PM A scrollbar will appear when your content is larger than the window holding the content. If you're talking about scrollbar colors (since this was posted in the CSS section), here is the code: <style type="text/css"> BODY { scrollbar-face-color:; scrollbar-base -color:; scrollbar-highlight-color:; scrollbar-3dlight-color:; scrollbar-darkshadow-color:; scrollbar-shadow-color:; scrollbar-arrow-color:; scrollbar-track-color:; } </style> Add in the color you want in the :;s. |