MySpace font codes

Question:

Here’s a quick one from Lisa: I would like to change the font type and size of my About Me and I’d Like to meet texts on MySpace.

Answer:

Here’s a quick example of some MySpace font codes:

<font size=”12”><font face=”calibri”>Your About Me text
(or other texts) here</font>

Modify the font size and pick any font you see fit. A complete list of fonts can be found here.

Enjoy :-)

Change font color in HTML

Question:

Here’s a question from David from the UK: I would like to change my font colour in the Interests and Details tables on MySpace. Can you help?

Answer:

Thanks for your question David. Here’s the standard HTML code you would need to use in order to change your font color:

<font color="#000000">Your Text here </font>

This code will change your font color to black. I’ll suggest that you visit our colors chart for the entire list of available colors.

Center myspace profile details

Question:

Here’s a question from Brian, one of this blog’s readers, who asked me how he can easily center his MySpace profile.

Answer:

Thanks Brian. Here’s the CSS code you’ll need to paste into your About Me section of your MySpace profile, it will get the work done:

 <style>
/* Center myspace profile details */
table table table table table {direction:rtl;}
table table table table table td {direction:ltr;}
</style>

Enjoy :-)

Comments and friends scroll code for Myspace

Question:

Dwayne asks the following one: I would like to put my Friends Space and Comments sections in a scroll box. Can you help?

Answer:

Thanks Dwayne for your question :-). Here’s the CSS code for placing your Comments and Friends in a scroll on your MySpace profile web page:

<style>
/* Comment and friends scroll code for Myspace */
.bscroll {width: 435px; height: 500px; overflow: scroll;}
</style>
<div class=bscroll>
<table><tr><td><table><tr><td></div>

Enjoy :-)

Scroll boxes for myspace

Question:

Here’s one from Ken: thanks for the useful tips you have posted over in your web site. Can you provide me with the required codes i will need in order to create scroll boxes for MySpace?

Answer:

Thanks Ken. Creating MySpace scroll boxes is not difficult at all. All you’ll need to do is grab the following CSS code and paste it in the relevant section of your MySpace profile in which you would like to create scroll boxes in (About Me, I’d like to Meet, Comments, Friends, etc’):

<style>
div.my-scroll {height:200px;
width:450px;overflow:scroll;
}
</style>
<div class="my-scroll">
<p>Your_Text_here
</p></div>

Voila, enjoy your new MySpace scroll boxes :-)