First of all, put this in "Who id like to meet"
CODE
<div class="your_banner"><div class="banner_content"></div>
Then put this in "About Me"....
CODE
<style type="text/css">
START { YOUR BANNER - below myspace masthead }
NOTE { left margin should be half the width and negative }
NOTE { match border-color to your background color - color is text color }
.your_banner
{
border-color:black;
background-color:white;
color:cccccc;
position: absolute; left: 50%; top: 170px;
height: 150px;
width: 800px; margin-left: -400px;
overflow:hidden;
font-family:Arial, Helvetica, sans-serif !important;
background-image: url(URL_FOR_YOUR_BG_IMG_HERE);
background-position:center left;
background-repeat:no-repeat;
border-width: 4px 0; border-style: solid;
}
.banner_content
{
padding:10px 20px;
border:none;
}
.your_banner h2
{
margin:0;
font-family:Trebuchet MS, Helvetica, sans-serif;
font-size:44px;
line-height:48px;
font-weight:normal;
}
.your_banner h4
{
margin:2px 0;
font-size:20px;
line-height:24px;
font-weight:normal;
}
.your_banner p
{
margin:0;
font-size:14px !important;
line-height:16px;
font-weight:normal;
}
NOTE { make room for the banner by padding top of profile table }
NOTE { setting below MINUS banner height above EQUALS margin below your banner }
body table table td {padding-top:160px;}
DNA { control side effects }
div table table td {padding-top:0px;}
body table table table td {padding-top:4px;}
END { YOUR BANNER }
</style>
Where it says:
CODE
URL_FOR_YOUR_BG_IMG_HERE
put the URL to your image
CODE
http://whatever.com/whatever.jpg
for example.
These should be pretty obvious...
CODE
border-color:black;
background-color:white;
color:cccccc;
The first (unless you want a border) should be set to the background color of your whole profile.
The second is the same and the last one is the font color, either set it to the background color or whatever, it doesn't really matter too much I dont think.
These control the position of the banner...
CODE
position: absolute; left: 50%; top: 170px;
height: 150px;
width: 800px; margin-left: -400px;
You shouldn't need to change these by much.
Hope this helps man. :-)