How to Put My Contact Table on My Top Banner on Myspace
Although Myspace no longer includes a contact table on your profile page, you still have the option to make your own table and display it in a marquee, which is the top banner above your profile. Your contact feature can display the information you want, such as your Web page or email address, so that your visitors have a convenient way of contacting you. Use HyperText Markup Language (HTML) and the Myspace marquee tool to build and display your contact table at the top.
Instructions
-
-
1
Log in to your Myspace account and click the "Customize" button at the top of your profile page. Click the "Modules and Marquee" button that appears above your name and then click the "Marquee" button to continue.
-
2
Click a marquee template option in the dialog window that automatically opens. The "Blank" option, for instance, displays a completely empty banner, while the "Social Media" design puts Facebook and Twitter icons alongside your marquee content. Click the "Publish" button at the bottom of the window to continue.
-
-
3
Position your cursor in the Enter HTML text box that automatically opens in the Marquee dialog window. Enter the code that creates a two-column, two-row table:
<table>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table> -
4
Type the preferred contact table text in place of the "row [#], cell [#]" entries to make them display in the table. For instance:
<tr>
<td>Website</td>
<td>Email</td>
</tr>
<tr>
<td>Mail</td>
<td>Text</td>
</tr> -
5
Create hyperlinks out of your table entries (if needed) by entering "<a href=" ">" before the entry and typing a closing "</a>" tag after it. Enter the URL address between the quotation marks of the opening tag. If your link is an email, type "mailto:" followed by the email address after the colon. For example:
<td><a href="http://www.something.com">Website</a></td>
<td><a href="mailto:someone@example.com">Email</a></td> -
6
Click the "Save changes" button at the bottom of the Marquee dialog window. Your complete code now looks like this example:
<table>
<tr>
<td><a href="http://www.something.com">Website</a></td>
<td><a href="mailto:someone@example.com">Email</a></td>
</tr>
<tr>
<td>Mail</td>
<td>Text</td>
</tr>
</table>
-
1