Log In · Register

 

Help Topic Rules and Requirements


For a list of all requirements and guidelines pertaining to posting a new Help topic, please click here.

This Month's Contests | Hosts Looking for Hostees | Hostees looking for Hosts | Big Book of Resources

Submission Guidelines

Making a Default Layout, Step by step
GREASEbaby
post Jul 26 2006, 12:45 AM
Post #101


What's my name? Janette. and ily. <3
******

Group: Member
Posts: 2,139
Joined: Apr 2006
Member No: 391,911



For Myspace 2.0:
QUOTE(anzbex @ Nov 23 2008, 02:32 AM) *
Just thought i would share this with all. I requested a tutorial in another forum Myspacemarketplace for a myspace 2.0 tutorial & with many many thanks Nora from SKEEDIO kindly set about & wrote a tutorial . Its easy to follow _smile.gif

Myspace 2.0 tutorial by Nora SKEEDIO

Hope this helps some of you out ;)


Making a Layout 101:


Here's how to make a layout. There's a pinned post with stylesheets that you can also use.

Okay, to make a layout, you need to use a stylesheet, or css.


But what exactly is a stylesheet?

A stylesheet is code that tells your web browser (i.e. internet explorer, mozilla firefox, safari) what the page should look like. It has text commands and table commands that tells the browser what color, size, and style should be for whatever you're specifying.


How do I make a stylesheet?

All stylesheets, whether it's myspace, xanga, or just a website, start out with <style> OR <style type="text/css">. Most commonly, the background information is the first to be specified.

CODE
body {
background-color: ######;
background-image: url('URL HERE');
background-attachment:;
background-repeat: repeat;
background-position:;
}


Then, if you want skinny tables, you can add

CODE
TD TD {text-align: center;}
TD TD TD {text-align: center;}
TD TD TD TD {border-top: 0px solid; width: 1%; text-align:left;}
TD TD TD TD TD {border-top: 0px solid black; text-align:right;}
TD TD TD TD TD TD {border: 0px solid;}
TABLE, TD {padding: 0px; text-transform: none; width:350px;}
TABLE TABLE {padding: 0px; text-transform: none;}
TABLE TABLE TABLE {padding: 0px; text-transform: none;height: .01%; width: 100%;}
TABLE TABLE TABLE TABLE {padding: 0px; text-transform: none;}
TABLE TABLE TABLE TABLE TABLE {padding: 0px; text-transform: none;}
TABLE TABLE TABLE TABLE TABLE TABLE {padding: 0px; text-transform: none;}
table td div div font {visibili-ty:hidden;di-splay:none;}
table table table table {border: 0px; text-align: justify; padding: 0px;}
table table table table table {border: 0px; text-align: justify; padding: 0px;}
table table table table table table {border: 0px; text-align: justify; padding: 0px;}


The text properties:

CODE
font, body, table, td, div, h1, h2, br, a, p {font-family:; font-size:; color:; background-color: text-transform:; text-decoration:; font-weight:;}
.orangetext15 {font-family:; font-size:; color:; background-color:;text-transform:; text-decoration:; font-weight:;}
.whitetext12 {font-family:; font-size:; color:; background-color:;text-transform:; text-decoration:; font-weight:;}
.lightbluetext8 {font-family:; font-size:; color:; background-color:;text-transform:; text-decoration:; font-weight:;}
.text {font-family:; font-size:; color:; background-color:;text-transform:; text-decoration:; font-weight:;}
.nametext {font-family:; font-size:; color:; background-color:;text-transform:; text-decoration:; font-weight:;}
.blacktext12 {font-family:; font-size:; color:; background-color:;text-transform:; text-decoration:; font-weight:;}
.blacktext10 {font-family:; font-size:; color:; background-color:;text-transform:; text-decoration:; font-weight:;}
.btext {font-family:; font-size:; color:; background-color:;text-transform:; text-decoration:; font-weight:;}
.redtext {font-family:; font-size:; color:; background-color:;text-transform:; text-decoration:; font-weight:;}
.redbtext {font-family:; font-size:; color:; background-color:;text-transform:; text-decoration:; font-weight:;}


Then the links:

CODE
a:link, a:active, a.man:link, a.text:link, a.redlink:link, a.redlink:active, a.navbar:link, a.navbar:active {font-family:; font-size:; color:; background-color:;text-transform:; text-decoration:; font-weight:;}
a:visited, a.man:visited, a.text:visited, a.redlink:visited, a.navbar:visited {font-family:; font-size:; color:; background-color:;text-transform:; text-decoration:; font-weight:;}
a:hover, a.man:hover, a.text:hover, a.redlink:hover, a.navbar:hover {font-family:; font-size:; color:; background-color:;text-transform:; text-decoration:; font-weight:;}



Uhh, this stylesheet makes absolutely no sense.

Okay, then I can explain it.

Background Color: the color for your background. You can put white, black, or a hex code. A hex code is a six digit code consisting of numbers and letters that makes up a color. For example, ff6666 makes a certain shade of pink, while c0c0c0 is a light grey. There is a good hex chart at http://webmonkey.com/webmonkey/reference/color_codes/.

Background Image: your background image. If you have it already saved onto your computer, go to tinypic.com or imageshack.us to get the URL for your background. Paste it in place of URL HERE.

Background Attachment: Use "scroll" or "fixed" (without the quotation marks). Scroll will move the background along with your tables. Fixed will keep the background steady and only move the tables (recommended)

Background Repeat: use "repeat" or "no-repeat" (still without the quotation marks). no-repeat will only have your background image appear once on your page, while repeat will have it repeated throughout.

Background Position: Mandatory if you have a no-repeat image. If you don't, still position it, but it doesn't really matter.
You can use:
top left
top center
top right
left
center
right
bottom left
bottom center
bottom right


font, body, table, td, div, h1, h2, br, a, p: the basic font on your page.

Font Family: the font of your page. (Arial, Courier, Georgia, Times New Roman, Small Fonts, Century Gothic, Verdana)

Font Size: the size of your font. use px or pt.
For example:

7px (perfect for small fonts)
8px
9px
10px
21px
64318623816318px (hehe)

You can do just about any size, but the most a size can be is 1002 (trust me! hah.)

Color: use hex code. color for the font.
Background Color: use hex code. background of the font. If not needed, just put "none" (without the quotes)
Text Transform: Make all the text uppercase, lowercase, or normal.
Text Decoration: Put underline if you want it that way. If not, just put none.
Font Weight: makes it bold. If you want it bold, put bold. If you don't, put none.
Orangetext15: About Me and Who I'd Like to Meet text
Whitetext12: Interests, Contacting, Details, and Schools text.

Lightbluetext8: General, Music, Movies, Television, Books, Heroes, Status, Here for, Hometown, Ethnicity, Zodiac Sign, Smoke/Drink, Education, and Occupation

Text: Your headline, Age, that stuff.
Blacktext12: Date on comments
Blacktext10: Extended network text.
Redtext: Amount of friends and number
Redbtext: Has # friends and name's latest blog entry.


Hope this helps!<3

edit//
edited skinny code. this one is more fuctional and doesn't mess up your friends/contact table. :]

CODE
<style type="text/css">
b {background-color: a23b66;
     color: cccccc;
     font-family:Georgia;
     font-size:8pt;
     letter-spacing:0pt;
     font-weight:bold; }
i,em{
    background-color: a29ed3;
     color: a23b66;
     font-family:Georgia;
     font-size:8pt;
     letter-spacing:0pt;
     font-weight:normal;  }
u{
     background-color: e18b76;
     color: cccccc;
     font-family:Georgia;
     font-size:8pt;
     letter-spacing:0pt;
     font-weight:normal; }
</style>


This is to edit your underline, bold, and italics text.
B to edit your bold text.
I to edit your italics text.
u to edit your underlined text.


Added by GrrDesign Putting a Banner above your page

CODE
<style type="text/css">
body { margin-top:400px; }
.topban { width:800px; height:400px; position:absolute; top:0; left:50%; margin:0 0 0 -400px; }
</style>
<div class="topban"><img src="IMAGE LINK" /></div>

similar, to put a banner below the myspace advertisement, above your profile:
CODE
<style type="text/css">
body table { margin-top:400px; }
body div table, body table table { margin-top:0; }
.topban { width:800px; height:400px; position:absolute; top:0; left:50%; margin:135px 0 0 -400px; }
</style>
<div class="topban"><img src="IMAGE LINK" /></div>

subsequently, you can put whatever you want within the div. images, text, links, whatever. it's like a div layout sitting above a standard layout.

the rest of that layout is simply made by using images within the already applied tables that myspace provides. (they just removed to contact table and header text and put their own header images and information.)

This post has been edited by karmakiller: Nov 24 2008, 12:00 AM
 

Posts in this topic
I own yourr face.   Making a Default Layout   Jul 26 2006, 12:45 AM
xbellaxbellax   yeahh ... myspace.com/deja_vu_layouts ;]   Jun 22 2007, 06:47 PM
FallintoMusic   Gah when I edit the links part it doesn't work...   Jul 6 2007, 06:24 PM
XBreX   ok this is very very help full but what i want to ...   Jul 6 2007, 10:05 PM
Maestro   CODE<a href="LINK URL HERE TO THE PREVIEW...   Jul 6 2007, 10:07 PM
AverageHero   Okay above the about me and who'd like to meet...   Jul 11 2007, 03:14 PM
hollywoodpink   say i wanted to get rid of the orange text instead...   Jul 16 2007, 12:56 PM
freeflow   ^ .orangetext15{display:none;}   Jul 16 2007, 12:58 PM
hollywoodpink   found it right before you posted. but thanks for t...   Jul 16 2007, 12:59 PM
hollywoodpink   hmm. i still have that orange bar that was underne...   Jul 16 2007, 01:00 PM
maynhia   this is kind of hard for me....read it over...but ...   Jul 28 2007, 11:42 AM
Alvin   ^What do you not understand?   Jul 28 2007, 03:23 PM
x0beach0babe0x102   i just started a layout site on myspace and i am s...   Aug 4 2007, 01:15 PM
gkaye08   i'm using this layout code for my page & i...   Aug 6 2007, 08:22 PM
karmakiller   ^ font-weight:normal; should work. If you want to ...   Aug 7 2007, 06:00 PM
kickasscontests   QUOTE(I own yourr face. @ Jul 26 2006, 01...   Aug 9 2007, 06:14 PM
oloveshack   I love this tutorial... but whats the end tag?   Aug 14 2007, 09:32 PM
polkadotpenguin   Thank you so much for posting this! Maybe I...   Aug 23 2007, 10:04 PM
tengopescador   hi. i was wondering if you knew how to fix this. ...   Sep 12 2007, 05:10 AM
ladycrusader.14   layout code pppleeaseee:]]   Sep 12 2007, 06:51 PM
KelvinBernard   I have a question. I want to edit the "Name...   Sep 15 2007, 08:16 AM
Insurmountable   ^What exactly are you trying to do?   Sep 19 2007, 04:28 AM
smilesbabyy   i appreciate the code but do you know how to chang...   Sep 23 2007, 03:06 PM
BrandonJohn   Do you have or know any tutorials in editing the d...   Sep 29 2007, 01:56 AM
digitalfragrance   QUOTE(BrandonJohn @ Sep 29 2007, 02:56 AM...   Oct 9 2007, 09:28 PM
trecoollover925   um..am i doing this wrong because it totally doesn...   Oct 7 2007, 07:46 PM
trecoollover925   hahaha just kidding i got it!! i forgot a ...   Oct 7 2007, 08:30 PM
kirraLEE   is it possible to put writing underneith a friend ...   Oct 12 2007, 06:22 AM
Insurmountable   ^You can make a div overlay and position it where ...   Oct 12 2007, 12:02 PM
indemand   nice.. i have been looking for one of these for a ...   Oct 20 2007, 06:15 PM
ravioli123lola   QUOTE(I own yourr face. @ Jul 26 2006, 12...   Nov 6 2007, 05:33 PM
oloveshack   great tutorial but how do I remove the gray bar th...   Nov 22 2007, 08:07 AM
oloveshack   will someone please tell me how to remove this? th...   Nov 22 2007, 09:47 AM
johncouzenslore   what do each of these links do?? a: a.man: a.text...   Nov 27 2007, 02:41 AM
tikichan   Ok, I was wondering how can I make my layout like ...   Dec 17 2007, 03:38 PM
staryxnightx3   QUOTEedited skinny code. this one is more fuctiona...   Dec 19 2007, 12:25 PM
xxbreanaxx   hey! this worked out perfectly for me! jus...   Dec 29 2007, 10:03 AM
Oooft-Crazy   QUOTE(I own yourr face. @ Jul 26 2006, 12...   Jan 2 2008, 02:50 PM
SharperMyspace   I think this title is misleading. To me, a "d...   Jan 3 2008, 10:12 PM
TwitchMorrison   QUOTE(SharperMyspace @ Jan 3 2008, 08:12 ...   Apr 6 2008, 12:53 AM
maynhia   i don't get it... i been doing it ove and over...   Jan 6 2008, 05:14 PM
letsgoxdisco   i know this is stupid, but i have never been able ...   Jan 24 2008, 06:02 PM
Rainbow-Pop   hey thanks a bunch for the help im thinking about ...   Jan 24 2008, 09:00 PM
Whimsicalness   I got the first part of the codes right, but i can...   Feb 18 2008, 04:20 AM
Friend14   How can I add more number of friends into my myspa...   Mar 15 2008, 08:21 PM
Friend14   How can I add more number of friends into my myspa...   Mar 15 2008, 08:23 PM
ChaseTheDragon   This is so much more complex than it needs to be. ...   Mar 15 2008, 08:23 PM
TwitchMorrison   this is my first time here and this isnt helping a...   Apr 6 2008, 12:49 AM
Twiceonsundays   Thsnk you, for this tutorial, it really helped me ...   Apr 7 2008, 02:05 PM
musicloverrx13   Okay, can you put an extended network banner in wi...   Apr 11 2008, 08:52 PM
Kuntagious   I followed the directions but for the bgColor/bgUr...   Apr 15 2008, 06:45 PM
tralalax   i need the code to turn a regular layout into a de...   Apr 17 2008, 05:15 PM
tralalax   QUOTE(tralalax @ Apr 17 2008, 06:15 PM) i...   Apr 17 2008, 05:25 PM
mypanicdisorder   Okay this is very helpful but i have just a few qu...   May 3 2008, 12:07 PM
beboplayouts08   how to i just make a regular table with a picture ...   May 19 2008, 06:42 PM
jasonblue   Please, no advertising - Thomas   Jun 5 2008, 09:29 AM
Antonio   im trying to make a layout but im trying to make t...   Jun 7 2008, 01:42 AM
iluvpurple25   thanx for this...i'm barely starting and this ...   Jul 19 2008, 03:55 AM
Pixelerator   This is very good tutorial .. But i have various Q...   Jul 31 2008, 01:08 PM
IceCream4U   hahaha,people are freakin out cause some of the co...   Sep 9 2008, 07:39 PM
Dleedude   Uhh, i have one little question. is there a way to...   Sep 11 2008, 09:12 AM
schizo   ^ Try this: CODE<style> .blurbs td.text, ...   Sep 13 2008, 10:54 AM
LOWERY   can someone please help me   Sep 25 2008, 04:24 PM
schizo   ^We can't help you unless you tell us exactly ...   Sep 25 2008, 04:30 PM
meekers89   Oookay.. I'm not sure if I'm doing any of ...   Nov 18 2008, 03:50 AM
rjohnson1991   QUOTE(meekers89 @ Nov 18 2008, 02:50 AM) ...   Dec 4 2008, 07:00 PM
Anarchy   Click here for a great tutorial on how to play aro...   Nov 23 2008, 06:01 PM
hackinnathan   I'm not exactly sure if this has been specifie...   Dec 30 2008, 01:13 AM
digitalfragrance   ^use this: CODE<style> table table table {...   Dec 30 2008, 01:25 AM
hackinnathan   Thank you!   Dec 30 2008, 01:28 AM
blueragedesigns   QUOTETD TD {text-align: center;} TD TD TD {text-al...   Jan 8 2009, 03:42 AM
Mike   Those properties are there for a reason. Each one ...   Jan 8 2009, 04:45 AM
blueragedesigns   So "table table table" means the third t...   Jan 8 2009, 04:53 AM
Mike   Exactly.   Jan 8 2009, 06:18 AM
blueragedesigns   oh. Ah. Explains it I guess. :L   Jan 8 2009, 04:42 PM
Mike   Haha, yeah. MySpace is complicated like that.   Jan 8 2009, 04:52 PM
tiffanyket   hey , im new here so excuse my abscense lol. uhmm ...   Feb 22 2009, 09:50 AM
Mike   Posts merged. The first code places a banner abov...   Feb 22 2009, 10:18 AM
nena-tuya16   this is awesome [=   Mar 8 2009, 12:53 AM
sabrinakristine   it works good, expect for the picture part, i put ...   Jun 17 2009, 04:13 PM
genie1985   Wow,SO much!   Sep 4 2009, 08:54 AM
2 Pages V  < 1 2


Reply to this topicStart new topic
3 User(s) are reading this topic (3 Guests and 0 Anonymous Users)
0 Members: