« Web, HTML, Tech Forum

does anyone know how to make you're friend section a scroll box?

Posted by yumi

posted

Forum: Web, HTML, Tech

i do not know how pls help


Report Topic

3 Replies

Sort Replies:

Reply by arlo atomickk

posted

.profile .friends{

height: 100px !important;

overflow: scroll

}


U can change the height to whatever you want :)


Permalink Report Reply

Reply by yumi

posted

idk why but it does not work


Permalink Report Reply

Reply by Ryan

posted

This should do what you're looking for. Adjust the height as desired.

<style>

body > div > main > div.row.profile > div.col.right > div:nth-child(4) {

height: 200px;

overflow: scroll;}

</style>


Permalink Report Reply