
-
- Looks
Best In 800x600
-

|

|
- We've put
together a collection of materials to hack
and modify your MySpace. These methods were
sent to us from readers. If you have any
other good ways to hack-up your MySpace
Account, please email them to us and we will
post them here.
-
-
-

|
- Hacking
MySpace:
-
- MySpace
Hacking
- 1-10-12
-
-
- Easy!!
Myspace Profile Hacking*
Tutorial
- How
to completely blank out your profile and pile
junk on top of it
-
- Intended for
adventurous people with no coding
experience!!
-
-
- Blanking Out
Your Profile
-
- First of
all, you will need to blank out your Myspace
profile. All the text, links, images, etc.
that are on there normally (basically
EVERYTHING) can be made invisible... and
Myspace must be obliterated!! Doing this is
easy, you just need to copy THIS IMPORTANT
BUNCH OF CSS CODE ( Shown Below After the
break line ) and paste it into any of the
text areas of your profile (i.e., the "About
Me" section, or the "Interests"
section.)
-
- This code
doesn't delete anything on your profile, it
just makes it all temporarily hidden (and
actually, everything is still visible in the
page's source code.) There's a lot more code
in there than there really needs to be, it's
not very complicated. The only tricky thing
about getting it right was trying to make as
much of the page invisible as I could,
without hiding the controls that let you save
your changes on Myspace (even Myspace's "safe
mode" does not help out with this.) All that
I've added here is the CSS property
"visibility:hidden;" ...simple stuff!
-
- Next you'll
want to replace the
"YOUR
BG COLOR GOES
HERE" and
"BG
IMAGE URL"
text that's in that code (colored red on the
page) with whatever color or background image
you want to have on your profile. You don't
need to have both a color and an image (you
can delete some of the code.) A color looks
something like this: #FF0000, or you can
simply write in "blue", "green", etc. An
image's URL looks something like
this:
-
- Adding
Images On Top
-
- So now you
have a blank profile, with a background image
and/or color (and also a blue rectangle
remnant where the ad banner used to fly so
proudly.) Now you want to add images on top
of it! You can pile <div> layers on top
of your page. Here's the basic code that you
can copy and paste into any text area of your
profile (i.e. "About Me"), the things you
have to replace are in red:
-
- <div
style="position: fixed; left:x;
top:y;">
- <img
src="url" width="w"
height="h">
- <div>
-
- So, filling
in x and y with number values is how you
position your image on the page. The numbers
can be either pixel or percent values. If you
want them to be percentages (i.e. you want
your image to be 20% down on the page) just
put a % sign after your number. Usually you
have to test these values out to see where
the best position is through trial and error.
-
- The width
and height parameters are totally optional,
meaning it'll work even if 'width="blah"' and
'height="blah"' aren't written in. Filling w
and h in with number values lets you change
the size of the image. These are only
necessary if you want to make the image a
different size than what it is now (i.e.,
stretch it.) Percentages are acceptable here,
also. (Tip: if you enter a width value and no
height value, the image will automatically
resize itself to the height it needs to be to
maintain its correct
proportions...simple!)
-
- The
url
is just a link to whatever image you want.
Either you can find this image online, or, if
you want to make your own image or use your
own photo, you can upload it for free to a
site like PhotoBucket.com
and then link to that. Animated GIFs are
super fun and are thankfully still all over
the Internet, just ask Google for what you
want. GIFs and animated GIFs with some sort
of transparency are nice because you can see
through to what's behind. You can put a whole
bunch of these images on top of eachother if
you want.
-
- Here's a
neat trick that will allow you to stretch
your image out over the entire window (making
it huge and stretchy!):
-
- <div
style="position: fixed; left:0; top:0;
height:100%; width:100%;">
- <img
src="url"
width="100%" height="100%">
- <div>
-
- (Note: some
sites whose images you'll want to link to
might not permit you to because by linking in
this way you are basically putting a bit of
extra stress on their web server and stealing
their bandwidth...! This is called
"hotlinking." It's sort of sneaky, but don't
worry about it. Most of the images in my
Myspace profiles are hotlinked, there's just
always the threat that a site might take down
a certain image or prevent you from linking
to it, and then it won't show up on your
profile anymore (doh)!)
-
- Adding Sound
-
- To add some
cool tunes to your website, you'll need an
embed tag, like this one (which, again, you
can paste into your profile in any text area
you want):
-
- <embed
allowScriptAccess="never"
src="url"
autostart="true"
loop="true
or false"
hidden="true">
-
- So, again,
url is the link to the music or
sound
file
(i.e., WAVs, MP3s, MIDIs, etc..)
MIDI
files
work really well because they download a lot
faster than MP3s, and also they're super
cute. Looping can be set to either true or
false (or if you're super sneaky,
"palindrome"!!), but be warned that loops on
webpages are rarely seamless.
-
- Do it
-
- I glossed
over some of the technical stuff, which you
can search for if you're interested, but it's
not necessary...doing this is really simple.
A lot of it just involves saving things and
reloading them and trying them out over and
over until it looks cool.
-
-
-
- Hacking
Password Protected Websites:
-
- Want access
to your MySpace Account ? Forgot your
password ? Hacking password protected
Websites is just for you. Fully Autorun menu
driven software that gives you the power to
"charge ahead" against those pesky protected
sites and get access to your account today
!
-
- Introductory
Price, Limited time offer
!!
-
- Hacking
Password Protected
Websites:
-
- Price
- $ 9.95
-
-
-
-
-
- CS
CODE
-
-
- <style
type="text/css">
- .verdana12
{
-
visibility:hidden;
-
display:none;
-
- }
-
- .button
{
- visibility:hidden;
- display:none;
-
- }
-
- .r{}
- .admin,
.openedmail, .mailtext, .mailtext:link,
.mailtext:visited,.classifiedstext,.classifiedstext:link,.mailtext:hover,.classifieds,.classifieds:link
{
-
visibility:hidden;
-
display:none;
-
- }
-
-
-
- td
- {
-
- visibility:hidden;
- ..;
-
- }
-
- p
- {
- ..;
-
visibility:hidden;
- display:none;
- }
-
- body,li,
textarea
- {
- visibility:visible;
background-color:YOUR BG COLOR GOES HERE;
background-image:url('BG IMAGE
URL');}
-
-
- form
- {
- POSITION:absolute;
- }
-
- td div
a
- {
-
position:relative;
-
left:-300px;
-
- }
-
- div
- {
- visibility:visible;
color:black; ..;}
-
-
- .r{}
-
- .text{font-family:verdana,arial,sans-serif,helvetica;
font-size:8pt;
- color:..000000;
font-weight:none;
visibility:hidden;}
-
- .spacetext{font-family:arial,verdana,arial,sans-serif,helvetica;
- line-height:
18pt;font-size:10pt; color:..000000;
font-weight:none;}
-
- .redtext{font-family:verdana,arial,sans-serif,helvetica;
- font-size:10pt;
color:..cc0000;
font-weight:none;}
-
- .redtext8{font-family:verdana,arial,sans-serif,helvetica;
- font-size:8pt;
color:..cc0000;
font-weight:none;}
-
- .redbtext{font-family:verdana,arial,sans-serif,helvetica;
- font-size:10pt;
color:..cc0000;
font-weight:none;}
-
- .redtext12b{font-family:verdana,arial,sans-serif,helvetica;
- font-size:12pt;
color:..cc0000;
font-weight:bold;}
-
-
- .bluebtext{font-family:verdana,arial,sans-serif,helvetica;
- font-size:10pt;
color:..003399;
font-weight:none;}
-
- .redbtext{font-family:verdana,arial,sans-serif,helvetica;
- font-size:10pt;
color:..cc0000;
font-weight:none;}
-
- .utext{font-family:verdana,arial,sans-serif,helvetica;
- text-decoration:underline;
font-size:9pt; color:..000000;
font-weight:none;}
-
- .orangetext{font-family:verdana,arial,sans-serif,helvetica;
- font-size:10pt;
color:..FF9800;
font-weight:bold;}
-
- .orangetext2{font-family:verdana,arial,sans-serif,helvetica;
- font-size:8pt;
color:..FF9933;
font-weight:bold;}
-
- .orangetext15{font-family:verdana,arial,sans-serif,helvetica;
- font-size:9pt;
color:..FF6600;
font-weight:bold;}
-
- .lightbluetext8{font-family:verdana,arial,sans-serif,helvetica;
- font-size:8pt;
color:..336699;
font-weight:bold;}
-
- .bluetext8{font-family:verdana,arial,sans-serif,helvetica;
- font-size:8pt;
color:..003399;
font-weight:bold;}
-
- .whitetext7{font-family:verdana,arial,sans-serif,helvetica;
- font-size:7pt;
color:..ffffff;font-weight:bold;}
-
- .whitetext12{font-family:verdana,arial,sans-serif,helvetica;
- font-size:9pt;
color:..ffffff;
font-weight:bold;}
-
- .whitetext15{font-family:verdana,arial,sans-serif,helvetica;
- font-size:15pt;
color:..ffffff;
font-weight:bold;}
-
- .blacktext15{font-family:verdana,arial,sans-serif,helvetica;
- font-size:15pt;
color:..000000;
font-weight:none;}
-
- .blacktext13{font-family:verdana,arial,sans-serif,helvetica;
- font-size:13pt;
color:..000000;
font-weight:none;}
-
- .blacktext12{font-family:verdana,arial,sans-serif,helvetica;
- font-size:12pt;
color:..000000;
font-weight:bold;}
-
- .nametext{font-family:verdana,arial,sans-serif,helvetica;
- font-size:12pt;
color:..000000;
font-weight:bold;}
-
- .blacktext12nb{font-family:verdana,arial,sans-serif,helvetica;
- font-size:12pt;
color:..000000;
font-weight:none;}
-
- .blacktext10{font-family:verdana,arial,sans-serif,helvetica;
- font-size:10pt;
color:..000000;
font-weight:bold;}
-
- .blacktext10nb{font-family:verdana,arial,sans-serif,helvetica;
- font-size:10pt;
color:..000000;
font-weight:none;}
-
- .blacktext8{font-family:verdana,arial,sans-serif,helvetica;
- font-size:8pt;
color:..000000;
font-weight:bold;}
-
- .blacktext8nb{font-family:verdana,arial,sans-serif,helvetica;
- font-size:8pt;
color:..000000;
font-weight:none;}
-
- .blacktext7{font-family:verdana,arial,sans-serif,helvetica;
- font-size:7pt;
color:..000000;
font-weight:none;}
-
- .footer{font-family:verdana,arial,sans-serif,helvetica;
font-size:8pt;
- color:..000000;
font-weight:bold;}
-
- .skip{font-family:verdana,arial,sans-serif,helvetica;
font-size:8pt;
- color:..000000;
font-weight:none;text-align:right;}
-
- .blacktext14bu{font-family:verdana,arial,sans-serif,helvetica;
- font-size:14pt;
color:..000000;
font-weight:none;text-decoration:underline;}
-
-
-
-
-
- a{font-family:verdana,arial,sans-serif,helvetica;
font-size:8pt;
- text-decoration:underline;
font-weight:bold; text:000000}
-
a:link{color:..000000;}
-
a:active{color:..000000;}
-
a:visited{color:..000000;}
-
a:hover{color:..000000;}
-
- }
- }
- .r{}
-
- .r{}
- .btext,
.itext{font-family:verdana,arial,sans-serif,helvetica;
- font-size:8pt;
color:..000000;}
-
.btext{font-weight:bold;}
-
.itext{font-style:italic;}
-
- .r{}
- .bwtext,
.rtext, .rbtext,
- .subhead{font-family:verdana,helvetica,arial,sans-serif;
font-size:8pt; font-weight:bold;}
-
.bwtext{font-weight:bold;
color:..ffffff;}
-
.rtext{color:..cc0000;}
-
.rbtext{color:..cc0000;
font-weight:bold;}
-
.subhead{color:..252872;}
-
-
- .r{}
- .stext,
.sbtext,
- .swtext{font-family:verdana,helvetica,arial,sans-serif;
font-size:8pt;}
-
.stext{color:..555555;}
-
.swtext{color:..ffffff;}
-
.sbtext{font-weight:bold;
color:..000000;}
-
-
- .r{}
- .head11,
.text11{font-family:verdana,helvetica,arial,sans-serif;
- font-size:11pt;}
-
.head11{font-weight:bold;
color:..252872;}
-
.text11{color:..000000;}
-
- .r{}
- td.head13,
td.text13{font-family:verdana,helvetica,arial,sans-serif;
- font-size:13pt;}
-
.head13{font-weight:bold;
color:..252872;}
-
.text13{color:..000000;}
-
- .r{}
-
- table.grey,
tr.grey,
td.grey{background-color:..ffffff;}
- table.white,
tr.white,
td.white{background-color:..ffffff;}
- table.accent_light,
tr.accent_light,
- td.accent_light{background-color:..c9d7e8;}
- table.accent_dark,
tr.accent_dark,
- td.accent_dark{background-color:..70a5e6;}
- table.action,
tr.action,
td.action{background-color:..ffffff;}
- table.blue_light,
tr.blue_light,
- td.blue_light{background-color:..cccccc;}
- table.blue_dark,
tr.blue_dark,
td.blue_dark{background-color:..ffffff;}
-
- .required{
-
font-family: verdana, arial, helvetica,
san-serif;
-
font-size: 12px;
-
line-height: 130%;
-
color: ..ff3300;
- }
-
- .warning{
-
font-family: verdana, arial, helvetica,
san-serif;
-
font-size: 14px;
-
line-height: 130%;
-
color: ..ff3300;
-
text-decoration: bold;
- }
-
-
- .r{}
- table.blue_border,
tr.blue_border, td.blue_border{
-
border-style:solid;
-
border-top-color:..6699CC;
-
border-bottom-color:..6699CC;
-
border-left-color:..6699CC;
-
border-right-color:..6699CC;
-
border-width:2px;
-
border-top-width:2px;
-
border-left-width:2px;
- }
-
- table.red_border,
tr.red_border, td.red_border{
-
border-style:solid;
-
border-top-color:..CC0000;
-
border-bottom-color:..CC0000;
-
border-left-color:..CC0000;
-
border-right-color:..CC0000;
-
border-width:2px;
-
border-top-width:2px;
-
border-left-width:2px;
- }
-
- table.black_border,
tr.black_border, td.black_border{
-
border-style:solid;
-
border-top-color:..000000;
-
border-bottom-color:..000000;
-
border-left-color:..000000;
-
border-right-color:..000000;
-
border-width:2px;
-
border-top-width:2px;
-
border-left-width:2px;
- }
-
- table.white,
tr.white, td.white{
-
background-color:..ffffff;
-
background-image:url("http://static.animexx.de/fanart02/fanart_thumb/8262/239720.jpeg");
- }
-
- table.blue_header,
tr.blue_header, td.blue_header{
-
background-color:..ffffff;
-
font-family:verdana,arial,sans-serif,helvetica;
-
font-size:9pt;
-
color:..ffffff;
-
font-weight:bold;
-
valign:middle;
-
align:left;
- }
-
- table.red_header,
tr.red_header, td.red_header{
-
background-color:..ffffff;
-
font-family:verdana,arial,sans-serif,helvetica;
-
font-size:9pt;
-
color:..ffffff;
-
font-weight:bold;
-
valign:middle;
-
align:left;
- }
-
- table.blue_white,
tr.blue_white, td.blue_white{
-
background-color:..ffffff;
-
font-family:verdana,arial,sans-serif,helvetica;
-
font-size:9pt;
-
color:..ffffff;
-
font-weight:none;
-
margin-left: auto;
-
margin-right: auto;
-
text-align: center;
-
vertical-align: top;
- }
-
- table.blue_dark_bold,
tr.blue_dark_bold,
td.blue_dark_bold{
-
background-color:..ffffff;
-
font-family:verdana,arial,sans-serif,helvetica;
-
font-size:8pt;
-
color:..336699;
-
font-weight:bold;
-
margin-left: auto;
-
margin-right: auto;
-
text-align: left;
-
vertical-align: top;
- }
-
- table.blue_dark_nobold_black,
tr.blue_dark_nobold_black,
- td.blue_dark_nobold_black{
-
background-color:..ffffff;
-
font-family:verdana,arial,sans-serif,helvetica;
-
font-size:8pt;
-
color:..000000;
-
font-weight:none;
-
margin-left: auto;
-
margin-right: auto;
-
text-align: left;
-
vertical-align: top;
- }
-
- table.blue_light_nobold,
tr.blue_light_nobold,
td.blue_light_nobold{
-
background-color:..ffffff;
-
font-family:verdana,arial,sans-serif,helvetica;
-
font-size:8pt;
-
color:..000000;
-
font-weight:none;
-
margin-left: auto;
-
margin-right: auto;
-
text-align: left;
-
vertical-align: middle;
- }
-
- table.blue_light_bold,
tr.blue_light_bold,
td.blue_light_bold{
-
background-color:..ffffff;
-
font-family:verdana,arial,sans-serif,helvetica;
-
font-size:8pt;
-
color:..336699;
-
font-weight:bold;
-
margin-left: auto;
-
margin-right: auto;
-
text-align: left;
-
vertical-align: top;
- }
- a.blue_white{font-family:verdana,arial,sans-serif,helvetica;
- font-size:8pt;
text-decoration:underline;}
-
a.blue_white:link{color:..003399;}
-
a.blue_white:active{color:..003399;}
-
a.blue_white:visited{color:..003399;}
-
a.blue_white:hover{color:..cc0000;}
-
- a.rob{font-family:verdana,arial,sans-serif,helvetica;
font-size:10pt;
font-weight:bold;}
-
a:link{color:..003399;
text-decoration:none;}
-
a:active{color:..CC0000;
text-decoration:underline;}
-
a:visited{color:..003399;
text-decoration:none;}
-
a:hover{color:..CC0000;
text-decoration:underline;}
- }
-
- a.bert{font-family:verdana,arial,sans-serif,helvetica;
font-size:8pt; font-weight:bold;}
-
a:link{color:..003399;
text-decoration:none;}
-
a:active{color:..CC0000;
text-decoration:underline;}
-
a:visited{color:..003399;
text-decoration:none;}
-
a:hover{color:..CC0000;
text-decoration:underline;}
- }
-
- a.spiel{font-family:verdana,arial,sans-serif,helvetica;
font-size:10pt;
font-weight:normal;}
-
a:link{color:..003399;
text-decoration:none;}
-
a:active{color:..CC0000;
text-decoration:underline;}
-
a:visited{color:..003399;
text-decoration:none;}
-
a:hover{color:..CC0000;
text-decoration:underline;}
- }
-
- a.man{font-family:verdana,arial,sans-serif,helvetica;
font-size:8pt;
font-weight:normal;}
-
a:link{color:..003399;
text-decoration:none;}
-
a:active{color:..CC0000;
text-decoration:underline;}
-
a:visited{color:..003399;
text-decoration:none;}
-
a:hover{color:..CC0000;
text-decoration:underline;}
-
- }
-
-
-
-
- .r{}
-
- .r{}
- ..searchResultPageBody
{ font-family: Arial, Helvetica, sans-serif;
}
- ..searchResultPageBody
a { font-family: Arial, Helvetica,
sans-serif; }
-
- ..resultsContent
{ font-size: 14px; color:..000000;
text-decoration:none; }
- ..resultsContent
a { font-size: 16px; color:..0000cc;
text-decoration:underline;
font-weight:normal; }
- ..resultsContent
td { font-size: 13px; color:..000000;
}
- ..resultsContent
.content { font-size: 13px; color:..000000;
}
- ..resultsContent
.sponsoredLinks { font-size: 13px;
font-family: Arial, sans-serif;
color:..6f6f6f; text-decoration:none;
}
-
- ..resultsPages
{ font-size: 18px; color:..000000
}
- ..resultsPages
a { font-size: 14px; color:..0000cc;
text-decoration:underline;
font-weight:normal; }
- ..resultsPages
td { font-size: 15px; color:..000000;
font-weight:normal; }
-
- ..sponsoredLinksRight
{ font-size:13px; color:..000000;
}
- ..sponsoredLinksRight
a { font-size:13px; color:..0000cc;
text-decoration:underline;
font-weight:normal; }
- ..sponsoredLinksRight
td { font-size:12px;
color:..000000;}
- ..sponsoredLinksRight
.content { font-size:13px; color:..000000;
}
- ..sponsoredLinksRight
.sponsoredLinks { font-size:12px;
color:..6f6f6f; text-decoration:none;
}
-
- ..friendFinder
{ border: 1px solid ..639ace; width: 168px;
float: right; margin: 1px 20px 15px 0px;
display: inline; padding: 1em; font: 85%
Verdana, Arial, Helvetica, sans-serif;
background-color:..fff; }
- ..friendFinder
form { margin: 3px; padding: 0px;
}
- ..friendFinder
fieldset { margin: 0; padding: 0; border: 0;
}
- ..friendFinder
legend { color: ..039; background:
none;
padding: 0 0 0 20px; margin: 0 0 10px -5px;
font-weight: bold; font-size: small;
}
- ..friendFinder
input { margin: 0px; padding: 0;}
-
- .url {
color: ..008000; }
- .r{}
-
- a.text{visibility:hidden;
}
-
- </style>
|

|
|