Myspace help?

2007-06-06 18:52:19  

Myspace help? i'm making my own layout, and i wanted to know how to still be able to put stuff in the details section, without have the words "general, music, interests...so on" over there. i know u can hide it completely, but i still want to be able to put stuff over there. so does anyone have the code to hide just the words, or still be able to put stuff over there?
I did this on mine, so i'll go through it step by step.
First, hide all your titles etc using these codes:

<style>
.interestsAndDetails td.text {display:none;}
.interestsAndDetails .lightbluetext8 {display:none;}
.interestsAndDetails td {width:0px;}
.interestsAndDetails, .interestsAndDetails td {border:0px;}
</style>

Now that that's done, you need to make the background color of your interests section white, using this code:

<style>
.interestsAndDetails td td {background-color:white;}
</style>

Now hide your details section completely using this:

<style>
.userProfileDetail {display:none;}
</style>

Now whatever you put in your interests sections should just look exactly like it does when you put it in your about me (:

Hope this helps!