
Hide friends Space
To hide your “friends space”, just copy the following code
<style>
.friendSpace {
display: none !important;
}
</style>
into your “About me” section.
Resize friends images
To resize your friend’s images, copy the following code :
<style>
.friendSpace a img
{
width:80px;
}
</style>
into your “About me” section. Change the value of 80 to change the width of the images. 40 would be really small, 100 would be bigger, etc.
Remove border around friends images
To remove the borders on your friend’s images, use the following code :
<style>
.friendSpace a img {
border: none;
}
</style>
Remove the “View all of xxxx’s friends” link
To remove this link, just paste the following code into your “about me” section :
<style>
.friendSpace .redlink {
display: none;
}
</style>
