Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

G5Unit

macrumors 68020
Original poster
Apr 3, 2005
2,107
10
I'm calling the cops
On my MySpace page I currently have a banner on top that kind of spills onto the profile on purpose.

My question is, is it possible to overlay more pictures such as sticky notes or Polaroids on top of the rest of my profile?

They would be a lot further down, such as 1000 pixels down the page.

Here is the page:

Yannik's MySpace

Thank you!

EDIT: I rephrased me question below.
 
Use the position: absolute; and z-index property to do that along with top, left, right, and/or bottom.
 
Use the position: absolute; and z-index property to do that along with top, left, right, and/or bottom.

I'm sorry I'm not to good with CSS yet. Could that be clarified?

I attempted to just copy and paste the code I have currently and move it down, yet then it removed my original, allowing me to only have 1 overlay.
 
I'm sorry I'm not to good with CSS yet. Could that be clarified?

I attempted to just copy and paste the code I have currently and move it down, yet then it removed my original, allowing me to only have 1 overlay.

I don't know the exact code you're dealing with so can't give an exact solution.

Code:
.class {
 position: absolute;
 top: 1000px; left: 100px;
 z-index: 2;
}
.class2 {
 position: absolute;
 top: 1000px; left: 150px;
 z-index: 3;
}
 
Code:
<style>div td {background-color:000000;}</style>
<div class="masthead"><span><img src="http://img28.picoodle.com/img/img28/4/5/11/f_yaym_95e5b6f.png" border="0" /></a></span></div>
<style type="text/css">
.masthead {width: 750px; position: absolute; margin-left: -460px; left: 50%; top: 160px; 
background-image: url();}
body table {margin-top:280px;}
body td table, body div table {margin-top: 0;}
</style>

Here it is:eek:
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.