MySpace: Style!?
Posted by James Saunders on May 3rd, 2007
Following on from my recent little ‘project’ to try understand MySpace, I am going to look into a handful of web design techniques to try make MySpace profiles look a little less cluttered.
By injecting CSS into the MySpace profile editor it is possible to manipulate the appearance of the page. For the less geeky CSS (Cascading Style Sheets) is a simple mechanism for adding style (e.g. fonts, colors, spacing) to web pages. It is probably possible to write a whole book on this subject but I am only going to cover a couple of basics in this blog entry.
The background image can be changed by modifying the CSS ‘body’ element. The background image file has to be stored on another webserver and the following code placed in the MySpace profile in the ‘About Me’ section:
body {
background-image: url(http://www.jlsnet.co.uk/image.jpg);
}
The next task is to tame the MySpace text, headings and fonts. Unlike a webpage which had been designed with good web design practices, the MySpace pages are a mish-mash of tables, random DIV’s and text classes. Each of the headings… Blog, Extended Network, Details, Friends is given a random bunch of class names ‘whitetext12′, ‘blacktext12′, ‘btext’, ‘orangetext15′, ‘redtext’. In order to modify each of these use the following CSS code in your profile:
.whitetext12 {
color: 000000;
font-size: 18px;
font-family: Verdana, Tahoma, Arial, sans-serif;
display: block;
}
At this point I want to sidetrack to one of my biggest bug-bears of some of the profiles you come across on MySpace… Crazy colour combinations and twinkley things! It is not rocket science that having certain colour text on a background of similar colour will make the text hard to read. I have even come across MySpace pages where in order for you to even read the profile you are forced to highlight the text, this goes against all the rules of Jakob Nielsen (a famous webpage usability expert)!
Finally it is really frustrating when friends deliberately add large images to the MySpace comments box which totally throw out layout and make the page look nasty, the following bit of CSS code will help limit the width of such images:
table tr td table tr td.text table tr td.text table tr td table tr td img {
width: 75px;
}
Personally I would simply delete these comments for being so annoying, but some people may want to keep them.
I could go on forever trying to “polish a turd” but in my view MySpace is fundamentally flawed from the start and in order for it to look good Tom (the MySpace founder) really needs to read up on HTML standards and start over again.
“I’s kicks my’s brother owt’s of’s da house I’s do’s” –Portsmouth Youth
May 3rd, 2007 at 3:26 pm
COMMENTING BY MOBILE PHONE STILL WORKS
May 3rd, 2007 at 9:25 pm
Well! That all sounds lovely, although I didn’t understand much of it. I don’t think you should diss twinkley things though, I’m sure there is nothing wrong with a bit of sparkle on your my space!
Claire X
May 3rd, 2007 at 10:13 pm
My eyes glazed over when you said CSS. Ben would be riveted though.
May 4th, 2007 at 11:32 am
Does Ben read anyones Blog anymore? He never makes any comments
(you see what I’m doing here…)
May 7th, 2007 at 3:24 pm
well, agree, but you can make it look kinda nice, with a little bit of knowhow, and effort.
http://www.myspace.com/171984782
May 9th, 2007 at 9:37 am
So myspace looks like turd
You can’t polish a turd
Millions of people love myspace
Conclusion:
Most people just like to sit in their own turd :-0
Conclusion 2:
Only babies sit in their own turds
Conclusion 3:
Most people are babies
Conclusion 4:
Wow, I’m having a sureal moment
March 31st, 2008 at 4:30 am
I don’t really know who you think you are. My space is for everyone, myspace shows who people are by them decorating their myspace page and showing people who they are, what they like, and it doesn’t matter what it looks like, and who are you to judge or change things. Myspace allows people to express themselves through their websites, and I think myspace is the most popular website today!! Don’t go changing things that does not need to be changed…..
April 3rd, 2008 at 6:36 am
Hi Katrina,
I fully understand that MySpace is somewhere where people can express themselves through a variety different themes, colours, styles etc, I have even written about it in the previous blog entry to this. You ask ‘Who do I think I am saying things need changing?’, well, without sounding totally cheesy, I too am just expressing myself in my own blog. I have written both opinion (about how I feel MySpace is unusable and cluttered at times, using phrases like ‘In my view…’ and ‘Personally I…’) and fact (MySpace does not use any Web Coding or Usability Standards in its design).
Thanks for your comment, I do enjoy reading other peoples views and ideas and respect them also. Don’t worry I am not going to change MySpace… I’ll just use Facebook instead!