Tuesday, December 30, 2008

Answers

How do you change the background color for your MySpace?

for 1.0
<style>
body {background-color: COLOR;}
</style>


for 2.0 I recommend using the customization section itself for simple things like background color change. But if you want the code:

body {background-color:COLOR;}

in place of "COLOR" you can either put in simple color names such as black, white, blue, green etc. Or look up a HEX code (google HEX code chart, there's a ton of them around) for a specific color.
------------------------------------------

Is there a code for so i can put the Basic Info Module in the middle and the Comments Module under that with Blurbs Module on one side and Interests Module on the other side?

unfortunately even with profile 2.0, there is no three-column option, not can you move the items with any code.

In order to have the layout of modules you want, at this point you need a DIV overlay layout. They're not difficult to find on google :)

----------------------------------------
How can I hide how many friends I have but still show my top friends and also take away the part where it says View all / online / new etc.?

div.friendSpaceModule div.toolbar {display: none;}
----------------------------------------
how do you hide the links at the bottom of your profile where it says "about,faq,terms,report abuse" and how do you hide the top where it has the advertisement?

It's against the terms to hide the advertisement on top. The advertisements are what keeps MySpace free for us, so unless you want your account deleted/start paying thousands of dollars to MySpace/month yourself, let that ad be. :)

But the links at the bottom can be hidden as it does not violate TOS. So here you go:

for 2.0 place this code in CSS section

div.footer {display: none;}


No comments:

Post a Comment