Things You'll Need:
- Your very own MySpace profile
-
Step 1
Open a Web broaser to the MySpace Web page. Once logged in to your MySpace account, click the edit profile link on the page. You will be prompted to edit the following categories: "About me," "Interests," or "Music".
-
Step 2
Find the box where you would like to add a scrollbox. Type the following code to add an image and scrollbox:
<div style="overflow:auto; height:200px; width:300px"><img src="image.jpg" /></div> -
Step 3
Specify the width and height. In the above example, I used a height of 200 and a width of 300. However, you do not have to use the width and height provided.
-
Step 4
To add text, such as a music list, use the following code: <div style="overflow:auto; height:200px; width:300px">Band Name<br>Another Band Name<br>Musician Name</div>
-
Step 5
Put a line break between the artist and/or band name. You can also use an unordered list. However, this will create a bullet before each listed item. The code for unordered lists is: <ul><li>Band Name</li><li>Another Band Name</li></ul>










