View Full Version : MySpace HELP


80sTVLover
5-02-06, 06:47 PM
Help me, please.

In my "About Me" section, is there a special code I need to skip lines in the text box? I have tried and tried to no avail.

Thanks ahead of time. :)

Also, all MSpacers, feel free to add me here (http://www.myspace.com/mcmraider).

bookmistres4ever
5-02-06, 08:23 PM
Try adding this:

< br>

or

< p>

the br means line break - it's like hitting the enter/return key on your keyboard in HTML (webpage code)

The p means start a new paragraph, which generally gives you... um... two blanks lines I think

If that doesn't work then you'll have to actually do this:

< html>
< body>
type first paragraph here
< p>
type second paragraph here
< /body>
< /html>

In the above example, I put an extra blank space between the < and all the commands you need. When *you* go to type it. DO NOT PUT THE SPACE IN BETWEEN THE < and all the other letters... the only reason I put it there was because I am not sure whether the code would print out on this message board unless I added an extra space.

I hope I didn't talk too much geek speak for ya. lol

TopCat
5-02-06, 08:28 PM
http://www.freecodesource.com/index.php?page=myspacecodes/indexnew

:)

Diofan
5-02-06, 10:44 PM
Bookmistress is Partially correct.

To insert a blank space between lines of text do this:

<p>Text section 1</p>
<p>Text section 2</p>

Another way to do it is:
Text Section 1<br><br>
Text Section 2<br><br>

Both have the same effect.

If you want to see how my profile looks click here (http://www.myspace.com/diofan)
Hope that helps!
(I'm a certified web designer so if you need any other tips/help feel free to PM me)

JS
5-04-06, 07:46 PM
Here's My Space: http://www.myspace.com/transformers

Feel free to add me as a friend, if you haven't already done it. :)

80sTVLover
5-06-06, 11:18 PM
Thank you all for the help. :)