Press CTRL-D to Bookmark this Page  |  Contact Us
Views

Right Column Classes

Jump to: navigation, search

Here is a complete list of myspace's Right Column Section classes

<font color=red>
.extendedNetwork {}<br>
.latesyBlogEntry {}<br>
.blurbs {}<br>
.friendSpace {}<br>
.friendsComments {}<br>
</font>

You can hide any of these sections by simply styling them with display:none; like this

<font color=blue>
<style><br>
.friendSpace {display:none;}<br>
</style><br>
</font>

If you want to hide the section, but you want to leave the space it was occupying, you can do that withvisibility:hidden;

<font color=blue>
<style><br>
.friendSpace {visibility:hidden;}<br>
</style>
</font>




If you dont want to hide everything in one of the sections, then you can use the Right Column Generator to individually select which things you want hidden.




You can put a border on any of those section classes with border:3px solid; border-color:6699cc;

<font color=blue>
<style><br>
.friendSpace {border:3px solid; border-color:6699cc;}<br>
</style><br>
</font>

You can change the background of any of those section classes with background-color:6699cc; or background-color:transparent;

<font color=blue>
<style><br>
.friendSpace {background-color:6699cc;}<br>
.friendSpace * {background-color:transparent;}<br>
</style><br>
</font>

You can position any of those section classes like this (adjust TOP and MARGIN-LEFT to position it). You would use position:absolute; left:50%; top:500px; margin-left:-200px;

<font color=blue>
<style><br>
.friendSpace {position:absolute; left:50%; top:500px; margin-left:-200px;}<br>
</style><br>
</font>