« Web, HTML, Tech Forum

How to hide friends && make comments into a scroll box?

I remember on myspace you could hide your friends from your profile. You could also turn your comments into a scroll box. Does anybody have any idea how to do this?


Report Topic

8 Replies

Sort Replies:

Reply by Joy Marry

posted

I usually play the game heardle every day, a perfect combination of word puzzles and music, so great


Report Reply

Reply by Alex Robi

posted

Where do you paste this?


Report Reply

Reply by Cove

posted

This will get rid of your friends and comments entirely. I just guessed based on someone’s code for turning comments into a scroll box with someone’s comment about hiding friends and it got rid of everything when i combined both. 


.friends-grid {
    display: none;
}

.friends {
display: none;
}


Report Reply

Reply by Cove

posted

This will get rid of your friends and comments entirely. I just guessed based on someone’s code for turning comments into a scroll box with someone’s comment about hiding friends and it got rid of everything when i combined both. 


.friends-grid {
    display: none;
}

.friends {
display: none;
}


Report Reply

How can I hide all comments? x


Report Reply

Reply by 𝕔 𝕣 𝕪 𝕪 𝕓 𝕓 𝕪 ♡

posted

Does anyone know how to delete the rest of the box ? SOSOSOSOS


Report Reply

Reply by Ⓙⓐⓜ

posted

does anyone know how to hide the friend space border/divider and the number of friends listed? like that whole section 


Report Reply

Reply by missodessa

posted

This will hide your friend box.

.friends-grid {
    display: none;
}


This will put your comments in a scroll box

.friends {
    overflow: scroll;
    overflow-x: scroll;
    overflow-x: hidden;
    height: 300px; 
}

There may be other elements that still need to be hidden



Report Reply