Questions on Scripting a Band's Myspace Profile |
![]() ![]() |
Questions on Scripting a Band's Myspace Profile |
![]()
Post
#1
|
|
Member ![]() ![]() Group: Member Posts: 21 Joined: Jul 2009 Member No: 735,396 ![]() |
I'm guessing everyone here is professional or atleast knows more then I do when it comes to scripting myspace. I need help with a code for a Band's Myspace Profile.
I would like to overlap my entire left section of the page (under the banner and above the comments) with a picture. So I would be blocking, the default pic, and everything around it, the band members section, and all the way down to the record label, anyone knows a code that can do that? Here is an example of what I'm talking about http://www.myspace.com/alltheheathersaredying You see how they have a picture overlapping there default picture, then they have merchandise, and band members, i wish to do something similiar Also does anyone know how to replace headlines with pictures? for example tour dates, about me, band members like this band http://www.myspace.com/jackketchkills they have a image for the headline like biography, support and everything can anyone help me? or guide me? |
|
|
![]()
Post
#2
|
|
![]() Mel Blanc was allergic to carrots. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Designer Posts: 6,371 Joined: Aug 2008 Member No: 676,291 ![]() |
Try taking a look at this tutorial.
To cover your left side, just use a DIV container and insert an image in the DIV. To do this just create a class in your CSS: CODE .CLASS_NAME { position:absolute; top:###px; _top:##px; left:50%; _left:50%; margin-left:###px; _margin-left:###px; width:###px; height:###px; } Replace the ### with the appropriate values. Now, in your HTML, add this: CODE <div class="CLASS_NAME"> <img src="IMAGE_URL" border="0"> </div> Replace IMAGE_URL with the url (web address) to your image. Note* You can change the text that says CLASS_NAME. |
|
|
![]() ![]() |