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 > »   
Start new topic
Replies (25 - 49)
myspace_addict
post Sep 11 2006, 03:26 PM
Post #26


Newbie
*

Group: Member
Posts: 5
Joined: Sep 2006
Member No: 463,313



^ooo gotcha



body {
background-color: ffffff;
background-image: url(‘http://img452.imageshack.us/img452/208/pinkpinkstripesps5.jpg’);
background-attachment:fixed;
background-repeat: repeat;
background-position:center;
}


^^ is tht all u need or do u need the whole code?
 
GREASEbaby
post Sep 11 2006, 06:48 PM
Post #27


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

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



Wait, I'm thinking you want to change your font?

If so, yes, you need to put the whole code. Remember to put it in style tags :]
 
myspace_addict
post Sep 11 2006, 08:47 PM
Post #28


Newbie
*

Group: Member
Posts: 5
Joined: Sep 2006
Member No: 463,313



no, it's not the font i'm having the trouble with, it's the background. it won't show up.
 
*This Confession*
post Sep 11 2006, 08:49 PM
Post #29





Guest






^change your background properties to this instead:

CODE
<style type="text/css">
table, td {background-color:000000; border:none; border-width:0;}
body{background-image:url("http://img452.imageshack.us/img452/208/pinkpinkstripesps5.jpg’");
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-color:ffffff;</style>
 
freeflow
post Sep 13 2006, 09:32 AM
Post #30


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

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



^ W/o the style tags, thats already part of a full code. _smile.gif

or you can change it too:
body {
background-color: ffffff;
background-image: url(http://img452.imageshack.us/img452/208/pinkpinkstripesps5.jpg);
background-attachment:fixed;
background-repeat: repeat;
background-position:center;
}
 
myspace_addict
post Sep 13 2006, 07:23 PM
Post #31


Newbie
*

Group: Member
Posts: 5
Joined: Sep 2006
Member No: 463,313



ok thank you so much!
 
emily.weimer
post Oct 19 2006, 06:25 AM
Post #32


Newbie
*

Group: Member
Posts: 4
Joined: Sep 2006
Member No: 468,070



This is uber helpful, but how do I center the myspace links on the bottom of the page?
They appear on the left.
ermm.gif
 
*Infinite.*
post Oct 19 2006, 03:34 PM
Post #33





Guest






^Seems like many are having this problem, can I have your myspace link. I think You perhaps may have something in your coding thats causing this.
 
bellabellax3
post Nov 11 2006, 08:37 PM
Post #34


Member
**

Group: Member
Posts: 19
Joined: Nov 2006
Member No: 479,430



yeah im having the same problem as addicted...
i have the codes all rite buhh the background wont show up.. like wen i put it on in the about me section the whole code is in it....
heres wut it looks liek....
http://profile.myspace.com/index.cfm?fusea...bc-4457d5f35e75
 
*Infinite.*
post Nov 11 2006, 10:50 PM
Post #35





Guest






For background properties use this:

CODE
<style type="text/css">
table, td {background-color:transparent; border:; border-width:;}
body {
background-color: ffffff;
background-image: url();
background-attachment:fixed;
background-repeat: repeat;
background-position:center;}
</style>
 
bellabellax3
post Nov 12 2006, 09:37 AM
Post #36


Member
**

Group: Member
Posts: 19
Joined: Nov 2006
Member No: 479,430



ughh it still doesnt work.... i think i have sumthing wrong with my font coding or w.e idk i think i did it all rite..... buhh i guess not
heres the code...
CODE
body {
background-color: FFFFFF;
background-image: url('http://i15.tinypic.com/4h2pge9.jpg');
background-attachment:fixed;
background-repeat: repeat;
background-position:center;
}
font, body, table, td, div, h1, h2, br, a, p {font-family:arial; font-size:9px; color:000000; background-color:none; text-transform:none; text-decoration:none; font-weight:none;}
.orangetext15 {font-family:arial; font-size:9px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}
.whitetext12 {font-family:arial; font-size:9px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}
.lightbluetext8 {font-family:arial; font-size:9px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}
.text {font-family:arial; font-size:9px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}
.nametext {font-family:impact; font-size:12px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:bold;}
.blacktext12 {font-family:arial; font-size:9px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}
.blacktext10 {font-family:arial; font-size:9px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}
.btext {font-family:arial; font-size:9px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}
.redtext {font-family:arial; font-size:9px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}
.redbtext {font-family:arial; font-size:9px; 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:arial; font-size:8px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}
a:visited, a.man:visited, a.text:visited, a.redlink:visited, a.navbar:visited {font-family:arial; font-size:8px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}
a:hover, a.man:hover, a.text:hover, a.redlink:hover, a.navbar:hover {font-family:arial; font-size:8px; color:000000; background-color:none;text-transform:none; text-decoration:none; font-weight:none;}
 
hippieface805
post Nov 23 2006, 02:37 PM
Post #37


Photog Head
***

Group: Member
Posts: 63
Joined: May 2006
Member No: 413,203



I tried to use the bg code and put no repeat and the url and position and everything but it never will show up....
 
freeflow
post Nov 23 2006, 03:26 PM
Post #38


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

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



^ Post the code to the background part only.
 
dork_love
post Nov 25 2006, 08:57 PM
Post #39


Newbie
*

Group: Member
Posts: 1
Joined: Nov 2006
Member No: 483,017



awesome hehe thanks for this tutorial im gonna try it out i guess thanks
 
snuffleluffakis
post Nov 26 2006, 03:33 PM
Post #40


Newbie
*

Group: Member
Posts: 2
Joined: Oct 2006
Member No: 470,496



i have a question...how do you get a screenshot???
 
freeflow
post Nov 26 2006, 04:59 PM
Post #41


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

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



^ Post a topic next time or search.
http://www.createblog.com/tutorials/download.php?id=147
 
fall out boy ...
post Dec 10 2006, 09:55 PM
Post #42


Newbie
*

Group: Member
Posts: 2
Joined: Dec 2006
Member No: 486,930



this is kinda confusing
 
*StanleyThePanda*
post Dec 11 2006, 01:28 PM
Post #43





Guest






^ What part is confusing you?
 
miss_manda89
post Dec 12 2006, 08:20 PM
Post #44


Newbie
*

Group: Member
Posts: 4
Joined: Dec 2006
Member No: 487,336



QUOTE(toyo loco @ Sep 11 2006, 10:53 AM) *
^ Post the background part of the code.


hey miranda here.... lol .... um i dont kow how to post um... like in the forum but i seen the quote but .. but i was wondering if you could help me....

i have got a new layout and everything seems to be working fine except the background picture... .. it wont come up and i dont know why !! lol

heres my url .. >>> www.myspace.com/miss_miranda_

and my code that i pasted in >>

Layout made by <a href="http://www.createblog.com/layouts/index.php?author_id=393227" title="More layouts by this person">TeenageVelocity</a> at <a href="http://www.createblog.com/layouts/index.php?type_id=3" title="More Myspace layouts">CreateBlog.com</a>.<style>/* myspace codes provided by createblog.com */</style>
<style type="text/css"> table, td {background-color:transparent; border:none; border-width:0;}
body{background-image:url('http://layouts.cbimg6.com/26/13042c.png');
background-attachment: fixed;
background-position: bottom left; background-repeat: no-repeat; background-color: 000000; }
table table table {border: 1px solid; border-color:000000; padding:0; background-color:EA94FF;}
table tbody td table tbody tr td.text table{background-color:068FE9;} table table{border:0px;}
table table table table{border:0px;}
font, td, a, body, table, body, td, li, p, div, textarea, li, h1, h2, p, br
{font-family: arial; color: black; line-height: 10px; font-size:11px; text-transform:lowercase; letter-spacing:0px;}
textarea, input {font-family:times; font-size: 8pt; color: black; text-transform:lowercase; letter-spacing:0px; background-color:93FDA2;border:1px solid black;cursor:crosshair;}
.btext {font-family: arial; font-size: 11px; color: black; background-color:93FDA2; line-height: 11px; letter-spacing: px; font-weight: normal; text-transform: lowercase; display:none;}
.blacktext10 {font-family: arial; font-size: 11px;color: black; background-color:93FDA2;line-height: 11px; letter-spacing: px; font-weight: normal; text-transform: lowercase; display:none;}
.blacktext12 {font-family: arial; font-size: 11px; color: black; background-color:93FDA2;line-height: 11px; letter-spacing: px; font-weight: normal; text-transform: lowercase;}
.lightbluetext8 {font-family: arial; font-size: 11px; color: black; background-color:93FDA2;line-height: 11px; letter-spacing: px; font-weight: normal; text-transform: lowercase;}
.nametext {font-family: times; color: black; background-color:93FDA2;line-height: 10px; font-size:14pt; text-transform:lowercase; text-align:center; letter-spacing:-1px;}
.orangetext15 { font-family: times; color: black; background-color:93FDA2;line-height: 10px; font-size:14pt; text-transform:lowercase; text-align:center; letter-spacing:-1px;}
.redbtext, .redtext {font-family: times; color: black; background-color:93FDA2;line-height: 10px; font-size:14pt; text-transform:lowercase; text-align:center; letter-spacing:-1px;}
.whitetext12 {font-family: arial; font-size: 11px; color: black; background-color:93FDA2;line-height: 11px; letter-spacing: 0px; font-weight: normal; text-transform: lowercase;}
.text {font-family: arial; font-size: 11px; color: black; line-height: 11px; font-weight: normal;text-transform:lowercase;letter-spacing:0px;}
img {filter: gray; border: 1;}
a:link, a.man:link, a.text:link, a:visited, a.man:visited, a.text:visited, a:active, a.redlink:active, a.redlink:visited, a.redlink:link, a.navbar:link, a.navbar:visited, a.navbar:active {font-family:small fonts; font-size: 7px; color: 93FDA2; font-weight: normal; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; line-height: 10px; background-color: transparent;}
a:hover, a.man:hover, a.text:hover, a.redlink:hover, a.navbar:hover {font-family: times; font-size: 20px; color:black; font-weight: normal; text-decoration: none; letter-spacing: -2px; text-transform: lowercase; line-height: 15px; background-color: ffffff;} b {color:000000;}u {color:black;text-decoration:none; border-bottom:solid 3px ffffff;font-size: 9pt;font-family:small fonts;text-transform:uppercase;}
s {color:000000;text-decoration:strikeout;}
i {color:66cc00;font-family:georgia;}
b, stong {font-weight:bold;font-size:8pt;line-height:10px;text-transform:lowercase;color: 000000;letter-spacing:0px;font-family:arial;} img { filter:none; border:0px;} a:link img {filter:none); border:0px solid black;}
a:hover img { filter:grey; border:0px solid black;} body {cursor:crosshair ;} a:hover {cursor: crosshair;} TD TD {text-align: center;} TD TD TD {text-align: center;} TD TD TD TD {border-top: 0px solid; width:5%; text-align:center;} TD TD TD TD TD {border-top: 0px solid black; text-align:center;} TD TD TD TD TD TD {border: 0px solid;} TABLE, TD {padding: 0px; text-transform: lowercase; width:350px;} TABLE TABLE {padding: 0px; text-transform: lowercase;} TABLE TABLE TABLE {padding: 1px; text-transform: lowercase;height: .01%; width: 100%;} TABLE TABLE TABLE TABLE {padding: 0px; text-transform: lowercase;} TABLE TABLE TABLE TABLE TABLE {padding: 0px; text-transform: lowercase;} TABLE TABLE TABLE TABLE TABLE TABLE {padding: 0px; text-transform: lowercase;} 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;} table table td.text table td.text table table tbody td table, span.btext {display: none !important} </style> <style type="text/css"> { Alignment by moorepocket } body{ padding-left: 400px; } </style>
<style>.r{}</style>

<style type="text/css">
img { filter: Gray }
a:link img { filter: Gray }
a:hover img { filter: Gray }
</style>
<style>.r{}</style>
<style>/* myspace codes provided by createblog.com */</style>



if you could get back at me as soon as you could that would be awsome!!
love LOVE

p.s this is the website to show you what my myspace should look like !

http://www.createblog.com/layouts/download.php?id=13042


but meanwhile .. im guna try and put another picture behind it ... but i still really wnt the old one !
 
freeflow
post Dec 13 2006, 01:13 AM
Post #45


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

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



^ Change:
body{background-image:url('http://layouts.cbimg6.com/26/13042c.png');

To:
body{background-image:url(http://layouts.cbimg6.com/26/13042c.png);
 
miss_manda89
post Dec 13 2006, 02:10 AM
Post #46


Newbie
*

Group: Member
Posts: 4
Joined: Dec 2006
Member No: 487,336



QUOTE(toyo loco @ Sep 11 2006, 10:53 AM) *
^ Post the background part of the code.


QUOTE(toyo loco @ Sep 11 2006, 10:53 AM) *
^ Post the background part of the code.



i itryed it lol and it didnt work ????? .... it changed the whole layout....

is there anything else i could do "?


MiRanDA
 
freeflow
post Dec 13 2006, 09:45 AM
Post #47


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

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



I'm lost your quoting something rather old. Did you change the part I told you to change? When I use the original code the background works perfectly fine for me.
IF I change the code to this it still works:
CODE
Layout made by <a href="http://www.createblog.com/layouts/index.php?author_id=393227" title="More layouts by this person">TeenageVelocity</a> at <a href="http://www.createblog.com/layouts/index.php?type_id=3" title="More Myspace layouts">CreateBlog.com</a>.<style>.r{}</style>
<style type="text/css"> table, td {background-color:transparent; border:none; border-width:0;}
body{background-image:url(http://layouts.cbimg6.com/26/13042c.png);
background-attachment: fixed;
background-position: bottom left; background-repeat: no-repeat; background-color: 000000; }
table table table {border: 1px solid; border-color:000000; padding:0; background-color:EA94FF;}
table tbody td table tbody tr td.text table{background-color:068FE9;} table table{border:0px;}
table table table table{border:0px;}
font, td, a, body, table, body, td, li, p, div, textarea, li, h1, h2, p, br
{font-family: arial; color: black; line-height: 10px; font-size:11px; text-transform:lowercase; letter-spacing:0px;}
textarea, input {font-family:times; font-size: 8pt; color: black; text-transform:lowercase; letter-spacing:0px; background-color:93FDA2;border:1px solid black;cursor:crosshair;}
.btext {font-family: arial; font-size: 11px; color: black; background-color:93FDA2; line-height: 11px; letter-spacing: px; font-weight: normal; text-transform: lowercase; display:none;}
.blacktext10 {font-family: arial; font-size: 11px;color: black; background-color:93FDA2;line-height: 11px; letter-spacing: px; font-weight: normal; text-transform: lowercase; display:none;}
.blacktext12 {font-family: arial; font-size: 11px; color: black; background-color:93FDA2;line-height: 11px; letter-spacing: px; font-weight: normal; text-transform: lowercase;}
.lightbluetext8 {font-family: arial; font-size: 11px; color: black; background-color:93FDA2;line-height: 11px; letter-spacing: px; font-weight: normal; text-transform: lowercase;}
.nametext {font-family: times; color: black; background-color:93FDA2;line-height: 10px; font-size:14pt; text-transform:lowercase; text-align:center; letter-spacing:-1px;}
.orangetext15 { font-family: times; color: black; background-color:93FDA2;line-height: 10px; font-size:14pt; text-transform:lowercase; text-align:center; letter-spacing:-1px;}
.redbtext, .redtext {font-family: times; color: black; background-color:93FDA2;line-height: 10px; font-size:14pt; text-transform:lowercase; text-align:center; letter-spacing:-1px;}
.whitetext12 {font-family: arial; font-size: 11px; color: black; background-color:93FDA2;line-height: 11px; letter-spacing: 0px; font-weight: normal; text-transform: lowercase;}
.text {font-family: arial; font-size: 11px; color: black; line-height: 11px; font-weight: normal;text-transform:lowercase;letter-spacing:0px;}
img {filter: gray; border: 1;}
a:link, a.man:link, a.text:link, a:visited, a.man:visited, a.text:visited, a:active, a.redlink:active, a.redlink:visited, a.redlink:link, a.navbar:link, a.navbar:visited, a.navbar:active {font-family:small fonts; font-size: 7px; color: 93FDA2; font-weight: normal; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; line-height: 10px; background-color: transparent;}
a:hover, a.man:hover, a.text:hover, a.redlink:hover, a.navbar:hover {font-family: times; font-size: 20px; color:black; font-weight: normal; text-decoration: none; letter-spacing: -2px; text-transform: lowercase; line-height: 15px; background-color: ffffff;} b {color:000000;}u {color:black;text-decoration:none; border-bottom:solid 3px ffffff;font-size: 9pt;font-family:small fonts;text-transform:uppercase;}
s {color:000000;text-decoration:strikeout;}
i {color:66cc00;font-family:georgia;}
b, stong {font-weight:bold;font-size:8pt;line-height:10px;text-transform:lowercase;color: 000000;letter-spacing:0px;font-family:arial;} img { filter:none; border:0px;} a:link img {filter:none); border:0px solid black;}
a:hover img { filter:grey; border:0px solid black;} body {cursor:crosshair;} a:hover {cursor: crosshair;} TD TD {text-align: center;} TD TD TD {text-align: center;} TD TD TD TD {border-top: 0px solid; width:5%; text-align:center;} TD TD TD TD TD {border-top: 0px solid black; text-align:center;} TD TD TD TD TD TD {border: 0px solid;} TABLE, TD {padding: 0px; text-transform: lowercase; width:350px;} TABLE TABLE {padding: 0px; text-transform: lowercase;} TABLE TABLE TABLE {padding: 1px; text-transform: lowercase;height: .01%; width: 100%;} TABLE TABLE TABLE TABLE {padding: 0px; text-transform: lowercase;} TABLE TABLE TABLE TABLE TABLE {padding: 0px; text-transform: lowercase;} TABLE TABLE TABLE TABLE TABLE TABLE {padding: 0px; text-transform: lowercase;} 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;} table table td.text table td.text table table tbody td table, span.btext {display: none !important} </style> <style type="text/css"> { Alignment by moorepocket } body{ padding-left: 400px; } </style>
<style>.r{}</style>

<style type="text/css">
img { filter: Gray }
a:link img { filter: Gray }
a:hover img { filter: Gray }
</style>
<style>.r{}</style>
<style>.r{}</style>
 
miss_manda89
post Dec 13 2006, 06:38 PM
Post #48


Newbie
*

Group: Member
Posts: 4
Joined: Dec 2006
Member No: 487,336



reason for quoting is... i dun no how to use this program

but i think it may just be my computer cz i still cant see i but thatnks for the help anyways:p

love LOVE
 
Intercourselyts
post Dec 28 2006, 01:13 AM
Post #49


Senior Member
*****

Group: Member
Posts: 569
Joined: Dec 2006
Member No: 490,667



^What program? pinch.gif
 
Intercourselyts
post Jan 13 2007, 11:16 PM
Post #50


Senior Member
*****

Group: Member
Posts: 569
Joined: Dec 2006
Member No: 490,667



^I'll help you, whats your problem? happy.gif

Did you read this who tutorial? Also you can use the third layout code down on this page:
http://www.createblog.com/forums/index.php?showtopic=84325
It tells you what edits what before the coding.
 

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