Skip to main content
Main Content

Need Help Making Scroll Bar on Table

Need Help Making Scroll Bar on Table
Posted 2020-09-27 07:34:10

On my den page, I'd like to have a cute little art display box for tags/page dolls/etc of my wolves. However, I dont want to stretch the page forever so I'd like to make a little scroll bar for easier viewing of my den. Can anyone help out? I tried doing a little research but the codes I tried didn't work and I'm afraid my knowledge of coding ends at being able to embed links.

Any help is appreciated! Post here or DM, either way!! <3 Thanks for reading!!


Bridge
#2427

Posted 2020-09-27 13:01:11

You'll need to make the scroll box with css as the overflow property doesn't work on the normal page. Here's the basic code:

.scrollbox {
height: 100px;
width: 400px;
overflow: auto;
}


All you have to do is adjust the height and width to how you want it ("overflow: auto;" is what makes it scroll, so don't edit that part). You can change the name of the div class (right now I just have it to "scrollbox") and also customize the scroll box further (like adding a border, changing background color, font, etc. Let me know if you need help linking an external style sheet on your den. :)


fireflii
#757

Search Topic