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 #1


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
 
8 Pages V  < 1 2 3 4 5 > »   
Start new topic
Replies (50 - 74)
sweetangel2128
post Jan 17 2007, 05:29 PM
Post #51


Senior Member
*****

Group: Member
Posts: 728
Joined: Jan 2007
Member No: 495,803



Wow, html and all that stuff is confusing as hell blink.gif
 
*Intercourse.*
post Jan 18 2007, 02:25 AM
Post #52





Guest






^Ah its not to hard once you get use to it wink.gif If you have any real questions that your really confused by feel free to ask happy.gif
 
Hamx3
post Jan 24 2007, 11:22 PM
Post #53


Newbie
*

Group: Member
Posts: 2
Joined: Jan 2007
Member No: 498,086



so... if i just copy the codes and edit the codes... put it on my MS... then it'll work?
 
*Intercourse.*
post Jan 25 2007, 03:03 AM
Post #54





Guest






^yep, pretty much happy.gif
 
nettynono
post Jan 27 2007, 04:18 PM
Post #55


nat-a-tat-tat
**

Group: Validating
Posts: 28
Joined: Apr 2006
Member No: 391,148



i have two problems if anyone can solve them

1. is there a code i could add to get rid of the tables and basically have a white space in the middle (all info like age, location etc is there but headings such as about me, who'd like to meet aren't present.

2.OR is there a way to change the colours of the headings (which are orange in default) and the blue table.
If anyone's confused i'll do a screenshot.
 
*Intercourse.*
post Feb 2 2007, 08:25 PM
Post #56





Guest






^screenshot please then happy.gif
 
ajbebob
post Feb 3 2007, 11:48 PM
Post #57


Myspace is dead.
**

Group: Member
Posts: 12
Joined: Aug 2006
Member No: 458,689



Is there a code I can insert to change the line height of the text?
 
freeflow
post Feb 3 2007, 11:58 PM
Post #58


t-t-t-toyaaa
********

Group: Official Member
Posts: 19,821
Joined: Apr 2004
Member No: 11,270



QUOTE(Candy-addict @ Feb 3 2007, 8:48 PM) *
Is there a code I can insert to change the line height of the text?

you add line-height: #px; in your css for all the classes you want edited .
 
ajbebob
post Feb 4 2007, 12:01 AM
Post #59


Myspace is dead.
**

Group: Member
Posts: 12
Joined: Aug 2006
Member No: 458,689



QUOTE(toyo loco @ Feb 3 2007, 10:58 PM) *

you add line-height: #px; in your css for all the classes you want edited .

Thank you lots. _smile.gif
 
hannahbanana1111
post Feb 4 2007, 12:06 AM
Post #60


Girliee Gurl
*

Group: Member
Posts: 9
Joined: Feb 2007
Member No: 500,675



omg someone help me, i really need help!
 
ajbebob
post Feb 4 2007, 12:11 AM
Post #61


Myspace is dead.
**

Group: Member
Posts: 12
Joined: Aug 2006
Member No: 458,689



QUOTE(hannahbanana1111 @ Feb 3 2007, 11:06 PM) *
omg someone help me, i really need help!

with?
 
freeflow
post Feb 4 2007, 12:42 AM
Post #62


t-t-t-toyaaa
********

Group: Official Member
Posts: 19,821
Joined: Apr 2004
Member No: 11,270



QUOTE(Candy-addict @ Feb 3 2007, 9:01 PM) *
Thank you lots. _smile.gif

If you get stuck feel free to pm me. _smile.gif

QUOTE(hannahbanana1111 @ Feb 3 2007, 9:06 PM) *
omg someone help me, i really need help!

Stop spamming the boards. You have your topic you don't need to keep posting in others saying you need help with out explanation.
 
kyns
post Feb 5 2007, 10:14 PM
Post #63


Newbie
*

Group: Member
Posts: 1
Joined: Feb 2007
Member No: 500,890



just out of curiousity and whatnots. is there a way I can have just the right side of the tables (as in ext. network, blog, about, friends and comments) to be the equal width as the left side? I seem to get myself a little confused when I use the code to skinny the profile.

here's my profile:
http://www.myspace.com/otoroeinochi


[edit]
actually, nevermind. I figured it out. just need to make the comment get resized to the same width as the rest now.
 
*Intercourse.*
post Feb 6 2007, 11:40 PM
Post #64





Guest






^If you put some of your links in the top of your about me to a new line your table will be the same width that they should be originally also use:
http://www.createblog.com/scripts/download.php?id=374
 
thecolorofromanc...
post Feb 25 2007, 02:07 AM
Post #65


Member
**

Group: Member
Posts: 21
Joined: Feb 2006
Member No: 372,831



How would i put an image pattern in the tables?
please help
 
freeflow
post Feb 25 2007, 11:17 AM
Post #66


t-t-t-toyaaa
********

Group: Official Member
Posts: 19,821
Joined: Apr 2004
Member No: 11,270



^
CODE
table table table {border: 1px solid; border-color: ######; background-color: ######;  background-image: url(URLTOIMAGE);}
 
Tirral
post Feb 25 2007, 11:17 AM
Post #67


Newbie
*

Group: Member
Posts: 2
Joined: Feb 2007
Member No: 505,838



Hello, i was wondering if somebody could help me. I am extremely new to all of this and i was curious as to how you find your myspace 'friend ID' when i am trying to use some people's work from here? Replies would be greatly appreciated on here or at Wednesday1989@hotmail.com.
Thankyou
 
freeflow
post Feb 25 2007, 11:33 AM
Post #68


t-t-t-toyaaa
********

Group: Official Member
Posts: 19,821
Joined: Apr 2004
Member No: 11,270



^ Stop posting this all over the place. Read the FAQ
 
Taylorxxx
post Mar 3 2007, 03:18 PM
Post #69


Newbie
*

Group: Member
Posts: 1
Joined: Mar 2007
Member No: 506,857



Most helpfullest tutorial everr :)
i've been trying to find a good one forever because I'm like HTML retarted but this one actually helps. I pretty much get it.. :)

thanksss you!
 
colorfulbee
post Mar 17 2007, 12:16 PM
Post #70


Newbie
*

Group: Member
Posts: 4
Joined: Mar 2007
Member No: 507,938



CODE
<style>


body {

background-color:FFFFFF;
    background-image:url(http://img19.imageshack.us/img19/351/coralwhtdotshr9.png);
    background-attachment:fixed;
    background-position:bottom left;
    background-repeat:repeat;
}


font, body, table, td, div, h1, h2, br, a, p {font-family:tahoma; font-size:12px; color:000000; background-color:FFFFFF text-transform:lowercase; text-decoration:none; font-weight:none;}



.orangetext15 {font-family:; font-size:18px; color:000000; background-color:none;text-transform:uppercase; text-decoration:none; font-weight:none;}




.whitetext12 {font-family:; font-size:14px; color:000000; background-color:;text-transform:none; text-decoration:none; font-weight:none;}





.lightbluetext8 {font-family:; font-size:14px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}




.text {font-family:tahoma; font-size:12px; color:000000; background-color:none;text-transform:lowercase; text-decoration:none; font-weight:none;}




.nametext {font-family:; font-size:25px; color:000000; background-color:none;text-transform:lowercase; text-decoration:none; font-weight:none;}




.blacktext12 {font-family:; font-size:16px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}




.blacktext10 {font-family:; font-size:17px; color:000000; background-color:FFFAFA;text-transform:none; text-decoration:none; font-weight:none;}




.btext {font-family:tahoma; font-size:14px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}




.redtext {font-family:tahoma; font-size:14px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}




.redbtext {font-family:tahoma; font-size:14px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}






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




a:visited, a.man:visited, a.text:visited, a.redlink:visited, a.navbar:visited {font-family:tahoma; font-size:; color:000000; background-color:;text-transform:; text-decoration:; font-weight:;}




a:hover, a.man:hover, a.text:hover, a.redlink:hover, a.navbar:hover {font-family:tahoma; font-

</style>
 
*Intercourse.*
post Mar 17 2007, 04:02 PM
Post #71





Guest






^Whats your problem? Or do you even have a problem, since you posted all your codes?
 
momo9041
post Mar 17 2007, 09:57 PM
Post #72


Senior Member
***

Group: Member
Posts: 48
Joined: Mar 2007
Member No: 510,115



ok i keep trying but my layouts dont come out rght?and for starters should i just make normal layouts not DIV's?you know to start out then try that?
 
Pac.Man
post Mar 19 2007, 05:41 PM
Post #73


Newbie
*

Group: Member
Posts: 1
Joined: Jan 2007
Member No: 495,936



My image isn't showing up, any help?
 
*Intercourse.*
post Mar 20 2007, 03:46 PM
Post #74





Guest






^ myspace link? and can we have a link to your image? Your uploading it at tinypic.com or imageshack.us correct?
 
freeflow
post Mar 24 2007, 01:37 AM
Post #75


t-t-t-toyaaa
********

Group: Official Member
Posts: 19,821
Joined: Apr 2004
Member No: 11,270



QUOTE(momo way @ Mar 17 2007, 7:57 PM) *
ok i keep trying but my layouts dont come out rght?and for starters should i just make normal layouts not DIV's?you know to start out then try that?

First start with a default layout. This is not the div tutorial. Thats in another thread. So first start off with this. If you get stuck you should make a topic, post your code, and post the problem. Then once you get normal layouts down, head out to divs.
 

8 Pages V  < 1 2 3 4 5 > » 
Reply to this topicStart new topic
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users)
0 Members: