Insert image into myspace with a link

11 Comments

Here is a tip to insert an image into a myspace comment with a link to a site when someone clicks on it.
Use for good, not evil.

insert image with link
<a target=”_blank” href=”http://HERE IS WHERE YOU PASTE THE ADDRESS OF WHAT YOU WANT IT TO LINK TO”><img src=”http://PASTE THE ACTUAL IMAGE LOCATION HERE”></a><br>

 

How do I change my myspace background color?

1 Comment

Heres another simple thing to do to pimp your myspace. Change the color of your myspace background…

To change your background color, copy and paste this text into the about me section of your profile
<style type=”text/css”>
body { background: ffffff;}
</style>

ffffff represents what color you are making the background. To get the code for the color that you want, you can check out this color chooser tool: http://www.profilehtml.com/tools/color-chooser.htm

Now, to put in an image as your background picture,
copy and paste this:

<style>
body {
background-image:url(http://XXXXXXXX);
background-repeat:no-repeat;
}
</style>

Where the XXXXXX is the location of the image you want to make your background. if you need help figuring out what that is, I have that on one of my other myspace posts.

If you want the picture to repeat on the page, insert this:
<style>
body {
background-image:url(http://XXXXXXXX);
}
</style>

If you want the background image fixed in place when you scroll down, use this:
<style>
body {
background-image:url(http://XXXXXXXX);
background-attachment:fixed;
}
</style>

You are now programming in CSS! it’s a start. In order to change your myspace profile, you must use CSS language. its not too tough, just do it in pieces, and remember every beginning should have an end.

How do I insert a video into myspace? as a comment?

7 Comments

I thought I would never do this. I was going to abandon it. This has been on my mind though. I have good information that I come across, that should be out there. I think this might work. this might just work….

My job lately has been creating myspace profiles, and maintaining them. someone wanted to comment a video in one of our profiles, but didnt know how. heres how(assuming you have a video)::
How do I insert a video into myspace?

1-upload it into a site like youtube…
2-view the video
C-on that page, there should be a box that says EMBED
D-click once on the area next to it , then copy it (right click, copy or CTL C)
f-paste this info into the section where would normally write a comment.

sites that host your video will almost always have a way to insert your video into wherever you want it to go. they want you to spread it too.:
If you find that there is some writing above or below your video which says: width=”300″ height=”150″
you will have to go into the code itself and do a little big of operating(don’t worry, its very easy) -> all you have to do is edit your comment and take out the code that looks like this ——-<object width=”300″ height=”150″>
——- then repost.

send a comment if you need any more help

now, also, for making profiles. If you dont pimp your profile, you are nobody. people wont respect you in the community. Myspace is getting these great video and picture slideshows – but you can only take in videos which are in the myspace system – not from other sources like youtube. Kudos anyhow for that.
For making cool backgrounds, and your boxes transparent or moderately opaque, here are some tools, I made today.
They are all clean now. if you do a search for them, they will always try to enter in their own ads into your myspace page. dont be violated. I havent sold out yet – so here is some very clean code for pimping your myspace. Be Safe.

For: transparent boxes – background image
<STYLE>
td, table, tr, span, li, p, div, textarea, DIV
{
background-color: transparent;
}
body
{
background-image: url(http://XXXXXXXXXX);
background-repeat: repeat;
}
</STYLE>

opaque boxes and a background image>>>>
<style type=”text/css”>
body {
background: url(http://XXXXXXXXXXXXXXXX);
}
</style>
<style type=”text/css”>
table, td, textarea, a, body, input{background-color:transparent;border:none;border-width:0}
table table table {border:1px double; border-color: 000000; padding:1; background-color:FFFFFF; filter:alpha(opacity=90); -moz-opacity:0.9; opacity:0.9; -khtml-opacity:0.9;}
table table{border:0px}
table table table table{border:0px}
</style>


insert image with link
<a target=”_blank” href=”http://HERE IS WHERE YOU PASTE THE ADDRESS OF WHAT YOU WANT IT TO LINK TO”><img src=”http://PASTE THE ACTUAL IMAGE LOCATION HERE”></a><br>