Industry guru Dave Taylor offers tech support on technical and business topics, including iPhone, iPod, Microsoft Windows, Sony PSP, cellphones, online advertising, CSS, Web design, business, Unix, Linux, SEO, Mac OS X, and shell script programming.     


How do I add MySpace background codes to my profile?

I saw your earlier article about how to change the background color of a MySpace profile (see Change background color of MySpace profile) but that's not what I want to do. I want to actually add a background picture. I've seen it done on tons of profiles - how the heck do I change my MySpace backgrounds myself?


Dave's Answer:

I'll show you how to do this, but be warned up front that it's not the easiest task in the world because you need to actually figure out what background picture you want to use then actually upload that to a different server, not MySpace. There are a bunch of options, but I'm going to use Photobucket for this particular example.

Your first step, therefore, is to find an image that you like and upload it onto Photobucket, as I explained in the earlier article How can I host images on the Web?

Once you've uploaded an image, you'll be able to see how to reference it a few different ways, like this:

Subtle MySpace Background codes on Photobucket

The value that we need for this particular MySpace trick is the Url, but just leave that window alone for now and pop open another one with your MySpace profile. Click on "Edit Profile" next to your picture and find your "About Me" profile box. Scroll to the very bottom of that box and add the following CSS code exactly as shown:

<style type="text/css">
body { background-color: transparent; border: none; border-width: 0px; }
body { background-image: url(photobucket url);
}
</style>

You type that in exactly as shown into the About Me box, after all the material you've written, replacing where it shows photobucket url with the value of the "Url" field on Photobucket itself. In my case, when I use the subtle background graphic shown earlier, it looks like this:

<style type="text/css">
body { background-color: transparent; border: none; border-width: 0px; }
body { background-image: url(http://i106.photobucket.com/albums/m259/d1taylor/subtle-background-graphic.jpg);
}
</style>

The result is pretty attractive:

MySpace Background Picture

but perhaps too subtle! There are a couple of easy tweaks we can make to the CSS to make it more generally interesting, then we'll look at some advanced tweaks. First, add the following lines and you can "fix" the graphic so that the text content scrolls but the picture's fixed:

<style type="text/css">
body { background-color: transparent; border: none; border-width: 0px; }
body { background-image: url(photobucket url);
background-attachment: fixed;
background-position: 0,0;
background-repeat: repeat;
}
</style>

(for simplicity, I'm going to use 'photobucket url' again, but you know that you have to replace that bit with the actual Url from your uploaded photobucket picture or whatever other picture you choose to use, right?)

If you don't want "fixed" for the background attachment, you should specify "scroll", which is what you're used to seeing on Web pages. You can turn off the cookie cutter repeat in both the horizontal and vertical direction by specifying background-repeat of "repeat-x" only, "repeat-y" only or "no-repeat", and you can specify how the background graphic should line up in the window with pixel offsets from the top left (as I do here), percentages (0%,0% is the top left, 100%,100% is the bottom right) or even specific words, top, center or bottom followed by a comma and left, center or right.

Putting that all together, if you have an image you want centered, not repeating, fixed, you could use background-attachment: fixed; background-repeat; no-repeat; and background-position: center,center;

Still, what most people seem to do with background graphics is to have the image "bleed through" the individual elements of the profile, so let's do that too. Be warned, however, this is where your profile can become darn unreadable darn fast!

What I like to do is to have a sort of middle ground solution, with some areas retaining their default white background for readability while others have the background bleed through. This is so incredibly easy to do that you'll gasp! Just add three letters to the earlier CSS:

<style type="text/css">
body, td { background-color: transparent; border: none; border-width: 0px; }
body { background-image: url(photobucket url);
background-attachment: fixed;
background-position: 0,0;
background-repeat: repeat;
}
</style>

Can you see what I added? After the first "body" I added ", td" so that the background color of the 'table data cells' are also transparent. Here's what happens:

MySpace Background Layout

Ah, that's looking more like a typical crazy MySpace profile with a custom background graphic, isn't it? :-)

I know, you're dying to learn how to get rid of those annoying white background boxes so that all of your profile is shown against the background graphic, aren't you? This is just a few additional characters again: where we have "body, td" simply make it "body, td, table", like this:

<style type="text/css">
body, td, table { background-color: transparent; border: none; border-width: 0px; }
body { background-image: url(photobucket url);
background-attachment: fixed;
background-position: 0,0;
background-repeat: repeat;
}
</style>

The result is predictably a bit more hard on the eye, but nonetheless interesting:

MySpace Layouts

Turns out that if you're willing to slog through all the possible tweaks and fiddles you can add to the CSS, there's a lot more you can do, and, of course, you can also use a far more dramatic background graphic or photograph than I have chosen for my own profile. I'll address these more advanced "div" tweaks a bit down the road!

Also, while I'm at it, I have a lot of additional MySpace Help here on the site and you can also become my friend by checking out my MySpace profile.


More Useful Twitter, LinkedIn and Social Network Help Articles:
✔   How do I search for a job on LinkedIn?
This may be a bit obvious, but I'm looking for work and am unclear how I can use LinkedIn to find positions other...
✔   Add a header graphic to my Twitter profile?
I heard from a colleague that Twitter's added profile pictures a la Facebook's timeline photo on the top. Nice, but how do I...
✔   Export LinkedIn Profile as a PDF Resume?
I've spent the last year or two updating and adding to my LinkedIn profile and it has a ton of information about me....
✔   How do I block an iPad app from accessing Twitter?
My son installed an app on my iPad and now it's posting updates on my Twitter account when he plays. What the deuce?...
✔   Repost a Facebook photo on Instagram?
I post a lot of photos on Facebook and sometimes want to share them with my Instagram followers. You can automatically mirror an...

Let's stay in touch!
Sign up for my weekly AskDaveTaylor Newsletter and you'll receive even more tech and gadget help right to your inbox, along with exclusive news and industry updates. It's good stuff. I promise!
    Enter your name: and your email addr:  





Categorized: Twitter, LinkedIn and Social Network Help   (Article 6865, Written by )
Tagged: hacking myspace, myspace, myspace background, myspace profile
Previous: How can I get iTunes to skip certain songs in shuffle mode?
Next: How do I create a new MySpace group?




Reader Comments To Date: 303

Megan said, on October 6, 2006 4:14 PM:

Question: how might i do the same thing to my blog "look and feel" so that the background image bleeds through??

CJ said, on October 31, 2006 2:10 PM:

could only get the bleed through to work half way right and not from my pic from photobucket. from the codes in your instruction above the ", td, table" did not work, but with another code "body { background: url(http://m3.pimpmyspace.org/cursors/back/2df08cabe51a677e995e43
84fe08fd37.jpg); }Myspace Backgrounds" the ", td, table" code only worked on half of the page please help.

wildbill said, on December 31, 2006 7:42 PM:

im trying to add this url to the sides of my profile on myspace....www.myspace.com/wildbill71568....help...thanx

Den said, on January 5, 2007 3:50 PM:

how do i put a centered that stays centered image in top of myspace?
thank you

Rachel said, on January 6, 2007 5:34 PM:

I've added a background from a profile generator but it's not scrolling like I want.

I'd like the image to follow the page as you scroll down. What's wrong?

I've included my MySpace URL below.

Thanks Dave!

Rachel said, on January 6, 2007 5:39 PM:

Nevermind...I fixed it. I needed to change the background attachment to "fixed" instead of "scroll"

:-)

Drew said, on January 17, 2007 1:25 PM:

Your awesome man!!! Been trying to get a background for myspace forever.

Sven said, on January 23, 2007 9:31 AM:

I have also found that if you don't have photobucket, or kodakgallery, you can use a picture that you have on myspace instead. Just open you picture in myspace, right click, properties, and then copy the url shown there and paste it into the code.

barbara Moneypenny said, on February 4, 2007 10:21 AM:

loved it - now i want to change my font and size and if possible the boxes with info in it to different areas - is it possible???

boris said, on February 12, 2007 2:29 AM:

Ummmm.....your links do not exist man. You click on edit profile and there is no picture tab from there.....I HATE MYSPACE GRRRR!!!!!!!!!!!!!


useless.

ervin said, on February 14, 2007 1:07 AM:

does any1 no how to i add liek a flash into. like when u go 2 my page a picture comes up n u have 2 click like enter n then it goes 2 my page. can u do dat or its not possible on myspace. email me if you can n lemmie no how 2 do it or if theres a website were i can go 2.

Miguel said, on February 18, 2007 8:29 PM:

hey how do I keep an Image that is not as big as the screen, only a single image and can I fix this to fit the whole window, instead of 4 repeated pictures.

lina said, on February 22, 2007 12:14 PM:

how do i create my own background image to myspace from images i have saved on my computer?

Jose said, on February 26, 2007 12:42 PM:

Thanks for the tips, but i'm having troubles with the background, it only appears in the left side of the screen, i cant make it a full screen picture, i already checked the size of the image and it didn't fixed the problem... i would really appreciate your help. thanks again

Chrisha said, on February 27, 2007 10:33 AM:

The easiest way to change your layout in myspace is to go to www.freecodesource.com Then look through layouts pick one and copy the code. Then go to your myspace and go under edit profile. Then paste the code under your words. Save the changes and your done. Go to your home page then below your picture and click on profile to make sure everything worked. If you have more questions contact me at leezer@tds.net and I'll try to help.

Freaky said, on March 2, 2007 8:15 AM:

Dave - how do I add attachments to myspace email? thanks Freaky!

freakyatwork@yahoo.com

SHERLIN said, on March 4, 2007 9:04 PM:

HOW DO U PUT A COLOR LIKE WEN U GO 2 SE MY PICS U CAN SEE A COLOR IN DA BAKROUND..??

linz said, on March 5, 2007 8:36 AM:

i want to change the background of all my pictures to different colour instead of white.. so when you click on view pictures you will see a different bakgrnd colour? please help. xx

Daryl Dugger said, on March 11, 2007 1:43 PM:

Hey Dave,

Thanks for the wonderful info on this site it's awesome, I do have one question,

After I put my image in the code and viewed my profile I have one small sliver too the right hand side in the background pic that wants to repeat itself, how do correct this issue? I tried all the stuff about centering and no repeat.

Thanks,
Daryl

Brittany said, on March 17, 2007 5:38 PM:

How do I put pics on myspace? Well please tell me thanks!

FullCart said, on March 20, 2007 1:55 AM:


I've been searching for the last few days for this exact info.
Thanks, Dave!
It was a piece of cake.
German Chocolate.
With the cream cheese frosting to boot.

Island Style said, on March 21, 2007 4:35 PM:

I have tried everthing step by step for adding my picture as a background, but nothing has change. I have not gotten any results. What am i doing wrong?

krystii said, on March 25, 2007 1:13 AM:

It is my husband and I's anniversary and I wanted to put some photos of us on our blog, on myspace. I know how to do that but what I don't know is how to put either a cute hearts background or border (around the pictures)on my blog.

stina said, on March 25, 2007 1:23 AM:

is there a way i can change the color of the font on my myspace profile? i have a dark background and the black writing doesn't show up against it because i took away the text boxes. what would the code for that be? hugs and kisses!

bb said, on March 25, 2007 2:31 PM:

thanks for the info, super easy. i was able to use a photo that i had uploaded to my myspace page and just used the url of the photo on my myspace page and did everything else as you said to and it totally worked. so no real need to use photobucket if that just confuses matters for you like it did for me.

Jaron said, on March 26, 2007 10:03 AM:

Thanks alot for all the info..

I've succesfully uploaded a background for my myspace account.. as a result though.. the font was hard to read.. Any idea what code is needed to change the colour of my font? ..

Gratefull as ever,

Jaron

Mini said, on March 30, 2007 2:16 AM:

how can i center the texy in my profile on myspace...? plz help!!

becca said, on March 30, 2007 7:53 PM:

i cant un center my myspace profile i evan deleted everthing can you please help

Angela said, on March 31, 2007 12:24 PM:

I know there is a way to change a friends' default pic to one of them that I want to appear just on my friends list. Like if someone has no ic, I can make one of my choice appear for them only on my page. I saw the 3way online somewhere, but forgot where! Thanks!

NICQUAY said, on March 31, 2007 8:29 PM:

how do i put roses in my background

DIxie said, on April 1, 2007 10:17 PM:

Ok I created my own layout and all.

MY PROBLEM IS:I created a default layout.I Added My Tables with a background image url this one :(http://photobucket.com/albums/e262/hotlayoutchx/backgrounds/stripes/7.gif).
My Background is plain white like any other default layout.

How can I change the border that i added to be the same image as the background of my tables.?

Thanks.Reply Asap.


sincerly,dixie

Nate Guerin said, on April 4, 2007 8:44 PM:

I used your tips to put in a pretty cool background to my Myspace profile page. The problem is that the background picture doesn't take up the whole screen but comes up an inch or two short on each side and a little bit short on the top and bottom. The result is that I have this ugly gray border surrounding my background picture. How can I extend the picture to take up the whole screen? Thanks.

jody said, on April 5, 2007 1:04 PM:

how do I make an image large enough so that i can fill the whole window?

Jocelyn said, on April 5, 2007 6:35 PM:

I tryed your last code on myspace...but the image that i want to go on the bottom left hand corner wont work. The image will ONLY stay on 0,0 ive tryed 100,100 that does not work either

shelton johnson said, on April 5, 2007 6:43 PM:

how do i get one big picture in the back ground and also how do i get rid of the big white box in the middle

kathleen said, on April 6, 2007 6:18 PM:

i cant FIND how you can get your text in the midle of your profile and not from left to rite

nam vu said, on April 6, 2007 9:08 PM:

thank you about this, now i have a nice backgroung in my profile!

me said, on April 10, 2007 5:15 PM:

this was the most helpful site if found, i have been looking for agesssss! thankyou!

jocelyn said, on April 11, 2007 11:20 AM:

can u show me soo cool backgrounds?

Raeann said, on April 13, 2007 4:00 PM:

how can i get my myspace page to "uncenter" itself. I used to know, but I'm lost now...

anna Spivey said, on April 14, 2007 9:40 AM:

Hi - Thanks for your website! I have read and reread but can't solve my problem. I put in the code as correctly as possible and activated Javascript but my background won't show up It will show up for a split second if I click off or on the webpage but then it disappears. What is the matter?! please help! Anna

amber said, on April 14, 2007 6:54 PM:

I would like to put a banner at the bottom of my page and i cant figure out how to do that...can you help me please.

Paul said, on April 15, 2007 3:50 PM:

I have a photo as my myspace background but i want it as just a 100% full size image and not just smaller versions being repeated. Can u help please ???

bina said, on April 16, 2007 2:07 PM:

how can i get a background on myspace PICpage?

Megan said, on April 16, 2007 7:35 PM:

im having problems with a scrollbar at the bottom of my page.

i have no big pictures or huge text to make it like that.

i scroll over and its just like a big blank wall!

i have no clue how to get rid of it.

erin said, on April 17, 2007 10:45 PM:

where do I type in all my codes for myspace bacrounds

Mieke said, on April 19, 2007 2:13 PM:

i've been looking for ages to make a background that fills my whole space.

how do I make an image large enough so that i can fill the whole window?

Elise said, on April 20, 2007 5:43 AM:

i tried to center my profile and it worked to well i cant seem to un center it now. How the hell do you do it ive been looking all over for help. Then i found a girl who was asking the same question but i couldnt see your answer to her. If you could give me some help it would be much appreciated . elise

rigo said, on April 20, 2007 3:27 PM:

we were looking for on how to put a picture on top of the profile like above where it says home and etc.

jennifer said, on April 20, 2007 11:28 PM:

hello? umm i dont know how to get a myspace background, can u help me please?

Thomas said, on April 21, 2007 8:44 PM:

ok my problem is, when i did ur steps on adding a backgrond to the letter and kicked the save buttong so that my profile would update a problem is occuring. when i go back to my home page my backgroud is the same as before the plane old white. when i go back into my profile edit and go to the location whare i placed the scripting, (in the about me box at the bottom) all my slashes (\)or (/) ive tryed them both, for some reason they are all a series of 2 periods lookign like this ( .. ) what is going on? my background wont change? is it because the picture is located on my main hard drive?

Thomas said, on April 21, 2007 8:47 PM:

sorry i had a few spelling errors, in that one but u understand what im saying right ^^?

GBM said, on April 23, 2007 8:29 AM:

thx Dave, jus forgot da "background-attachment: fixed", thx man, I'll go here every time I forget a code

Kimberly said, on April 24, 2007 9:41 AM:

Hi...i was wondering..i know some people that have images from photobucket on there myspace...but i would like to know how to make the image more in the middle..like if u have an image..and u edit your profile..that makes the image way over to the left side of your page..i want it to be in the middle.Help me out!!

ERIC HENDERSON said, on April 25, 2007 1:03 AM:

THIS WAS THE MOST HELPFUL SITE ON THE WEB. MAN THANKS A MILLION. I NOW HAVE MY OWN CUSTOM BACKGROUND AND I LOVE IT

chanda said, on April 25, 2007 9:01 AM:

I have a lot of information that I can't fit onto my profile. How do I add a second page to a myspace profile?

matt said, on April 25, 2007 10:37 AM:

How do we (Like alot of other bands) Get our picture on the very top of our myspace page, like the one at www.myspace.com/shadowwax? We are lost on this please help?

Mags said, on April 26, 2007 7:57 AM:

Hi,
I have added a background image using your codes & tips, but I am unable to prevent my image from repeating dispite using 'no-repeat' in the code.

Is it possible to get just one image in the top right hand corner? I have enter 'top,right' in the code but this does not work either.

Mariana Snizek said, on April 29, 2007 1:42 AM:

I cannot put a picture up on Google talk, although I followed the instructions. The picture appears for a second, then it disappears and it is not saved in the folder with pics from Google. If I choose a pic already supplied, that one stays. Please tell me what is wrong.
And don't be ridiculous,I never asked you any question before... so answer at least this one

Sara said, on April 30, 2007 12:48 PM:

Hey... i was trying to put some pictures under my interests on my page under the interests category on my myspace but for some reason this deleted my about me and centered everything. is there any way to get me about me back and make the format normal again?

Joseph Bozone said, on May 1, 2007 8:43 PM:

My question is different from any of the others asked. I found this website and was very excited!! Unlike the others, I have an Artist account and there is no "about me" box under edit profile to place all of the info that you have given me. I made up a regular account, and everything you recommended worked perfectly. If you could just tell me where to place my codes in an artist account, then i would greatly appreciate it!! Thanks for all of the help you have already given. Hope to hear from you soon.

Skye said, on May 1, 2007 9:45 PM:

Brilliant, Dave - helped me get mmy MySpace up and running on myspace in no time...

I now know where to come to for help!

Lucy said, on May 4, 2007 1:13 PM:

it isnt showing up on my myspace?! can you help

Gina said, on May 5, 2007 11:45 PM:

I have the same question as THIS PERSON! Thanks!
Gina
~~~~~~~~~~
I know there is a way to change a friends' default pic to one of them that I want to appear just on my friends list. Like if someone has no ic, I can make one of my choice appear for them only on my page. I saw the 3way online somewhere, but forgot where! Thanks!

Posted by: Angela at March 31, 2007 12:24 PM

tash` said, on May 8, 2007 5:57 PM:

how the hell do u uncenter ur myspace page i deleted everythink on it all my html codes and its still there it wont go away and i hve bin lookin everywhere 4 a code please help

shaun said, on May 9, 2007 1:43 PM:

I have set a photo as my background for myspace and at the minute it is center center. i can move it bottom right, top left etc but in none of these positions will its size increase so that it takes up the entire page. How do i make it fill up the whole page?? please help

Miles said, on May 12, 2007 7:02 AM:

This was the easiest way for me to know how

Thanx x50

T/A said, on May 12, 2007 1:33 PM:

This question was asked before.... On myspace, an artist account is different from a regular account. There is no "About me" edit field to place all the code information into. How do you change the look of an ARTIST account?

Miley Cyrus said, on May 13, 2007 4:07 PM:

I NEED HELP!!!!!!!!!!!what website do i go to tomake one of my pictures a layout for myspace!TELL ME ASAP!!!!!!!!!!!!!!!!!!!!

olivia said, on May 15, 2007 5:35 PM:

i want to know how to do a myspace layout where, when you go to the profile, the background shows up, but when everything else loads, the background goes away, and it's just the plain, default myspace page.
does anyone know how to do that?
or where to go?

thanks
peace and love

email: leavedeeralone8@hotmail.com

T. Sensei said, on May 16, 2007 4:21 PM:

To make your background pic centered, just use "background-position: center center;"

basically, just drop the comma

alex lara said, on May 18, 2007 3:49 PM:

hello my name is alex

im having a hard time getting my background to show on my myspace

it isnt tiled and it is actually words that i want going vertically up the left side of my page

the picture is not showing up and i am having a hard time positioning the picture too


please help,

thank you

noah said, on May 18, 2007 4:51 PM:

thanks; i've wondered about this for some time.

jane said, on May 21, 2007 8:06 PM:

how do you put pictures/backround colors in my picture profile??

jane said, on May 21, 2007 8:23 PM:

how do you put pictures/backround colors in my picture profile??

DENIZI said, on May 24, 2007 1:05 PM:

HOW DO I PUT IT ON MY VIEW MORE PICTURE PROFILE THINGY

Judy said, on May 27, 2007 9:24 PM:

Hi, Dave...How do I uncenter my page? Thanks, Judy :)

Rosie said, on May 28, 2007 2:17 AM:

Hey - it worked great! Thanks for the tips

Rebekah said, on May 31, 2007 4:28 AM:

Excuse me but do you know if it's possible to possibly change the tables to be slighty transperant but not completly?

christine said, on June 3, 2007 10:09 AM:

How do i make my words in my profile sections centered? kinda like a pyramid..ive seen it doen but dunno how ;(

quintiel said, on June 3, 2007 8:28 PM:

how do i get a profile tracker

Caroline said, on June 5, 2007 3:18 PM:

Hi!

I really need some help... I´m trying to change the background on my Music Myspace. I found some good help when you have an "ordinary Myspace", bur when you have a Music Myspace you can´t write something about yourself - and there´s where you should copy the text. Can someone please help me? Thanx!

/Swedish singer

tina said, on June 8, 2007 11:33 AM:

how do you get a background for your pictures like when people look at it your pics they can also see a background too.

erick said, on June 9, 2007 1:19 PM:

hello..i like these codes there great..but i have a question...bout the text is there a way i can change it.

carl hnatiuk said, on June 12, 2007 1:49 PM:

hey dave, man u must be busy with all these requests!!

err, its the same as alot of people. I have my picture but its been repeated so i got like 6 pictures instead of one full image!!

i need help

thanx, carl

ana said, on June 25, 2007 10:13 PM:

how do i change the color on my backround when people view my pictures...i want when you view my pictures the backround to be a different color not the backround on my profile

Don said, on June 30, 2007 1:44 AM:

I got the picture to show up. But how can I make it bigger? I have tried to increase it on my computer and on photobucket but without sucess. I want the picture to be over the whole screen without repeating? Any way this can be done.

MaL said, on June 30, 2007 1:53 AM:

How do i get the image so it doesn't repeat so i can jus have one of the photo instead of it being tiled??

Lauren said, on July 2, 2007 3:36 PM:

Hey,
Maybe you can help-I installed a skize.com pink flowers background on my myspace profile when I got started and now I want to change it with out loosing all my other graphics...I have tried to cut copy and paste other backgrounds to the about me section then cliked accept changes, but nothing changes. It seems like skize has an override to prevent me from changing it. How do I remove the old background and then get it to accept a new one?
Thanks

Tiara said, on July 6, 2007 1:05 PM:

hey there dave! great site! i was wondering if you could help me by explaining how i can have a background to my pictures section on myspace.. here is an example of what i would like to do: http://viewmorepics.myspace.com/index.cfm?fuseaction=user.viewPicture&friendID=1802837&albumId=0 (you must be loged into myspace to view) so i would like to know how to get the background black and also how to get the font a certain color! THANKS SOO MUCH! i have seriously been trying to figure this out for months! you are awsome!! ;)

jamie said, on July 10, 2007 9:28 AM:

none of these actually work, i tried multiple differant codes and it just stays the same as a normal profile.

Kat said, on July 11, 2007 5:09 AM:

heyy how do i add colour into my about me sections and comments?

Paul Moroney said, on July 11, 2007 3:17 PM:

Hello, followed your instructions which do not match your pictures, on the guide you say one picture as the background, but this is not what the picture shows. I was wondering if you can advise how to have one single photograph 100% background, the instructions above do not give me this

thanks

Vicky said, on July 11, 2007 4:02 PM:

Hi Dave,

I just started a MySpace page but I can't seem to get my layout to work properly.

I wasn't able to use the profile editor (I use Firefox) so I started tweaking things on my own. Then, while at work (which has IE) I found a premade layout I wanted to add, so I cut and pasted the code into the "About Me" section and it only half works - the background is gray and inside the boxes (modules?) is where the layout/picture is. For the life of me, I cannot undo it and it's driving me insane! Any info you have would be greatly appreciated.

Thanks! :)

E said, on July 18, 2007 10:37 PM:

how do i uncenter my profile?

Marshell Smith said, on July 19, 2007 9:24 AM:

I nneed to make a website on myspace tha will cause e everyone on myspace ,to see. I want the title to say: GET INTO THE LORD, i want it in a light green,lime kind with a extra blue color for the layers, and i want it to be put everywhere on myspace, do not use my real name, please just perfectly use 'Christian' as the name up top or no name at all.
Thank-You, i hope it works to spread the word, you could help me!

the yankee said, on July 20, 2007 12:44 PM:

OK ALOT OF PEOPLE HAS BEEN ASKING HOW FO I CHANGE THE BACKGROUND OF MY VEIW MORE PICTURES. HERE IS THIS WEBSITE THAT WILL GIVE U ALL THE CODES U NEED TO EDITE VEIW MOR PICTURES

URL:

http://www.profiletweaks.com/viewpictures.php

rana said, on July 20, 2007 2:06 PM:

ah ha thank you for your knowledge, i am no longer ingnorant:) yahoo

CHAD DAVIS said, on July 23, 2007 9:09 AM:

IM AN ARTIST ON MY SPACE AND I'M NOT ABLE TO GET THE CODE FOR PUTTING MY MACROMEDIA PLAYER WITH THE SONGS I CREATED IN MY PROFILE AS AN ARTIST ON A BULLETIN.I'VE SEEN IT DONE PLENTY TIMES BUT I DON'T KNOW HOW TO DO IT.O.K THATS IT I THANK YOU FOR YOUR TIME AND HOPE THIS IS HELPFUL FOR OTHERS

nnenna said, on July 23, 2007 11:45 PM:

thank you thank you thank you. all i wanted to do is put my own background on my myspace and keep the rest defult and i did it and it WORKED.

again thank you

Starbucks coffee cup I do have a lot to say, and questions of my own for that matter, but first I'd like to say thank you, Dave, for all your helpful information by buying you a cup of coffee!
 1  |  2  |  3  |  4  | All 4 Pages | Next | Last »

I do have a comment, now that you mention it!











I will never send you any unsolicited email. Ever.






Check This Out Too...

 
Look for Answers
Need Help? Ask Dave Taylor!


Follow Me on Pinterest

Find Me on Google+
ADT on G+
© 2002 - 2013 by Dave Taylor. All Rights Reserved.

Note: This web site is for the purpose of disseminating information for educational purposes, free of charge, for the benefit of all visitors. We take great care to provide quality information. However, we do not guarantee, and accept no legal liability whatsoever arising from or connected to, the accuracy, reliability, currency or completeness of any material contained on this web site or on any linked site. Further, please note that by submitting a question or comment you're agreeing to my terms of service, which are: you relinquish any subsequent rights of ownership to your material by submitting it on this site. My lawyer says "Thanks".
"Ask Dave Taylor®" is a registered trademark of Intuitive Systems, LLC.