Forum Moderators: open
Thanks
and i was aiming to have it all set up my birthday tomorrow but it does not look like it is goin to happen.
Thax any way
Add this to your page, then play with it.
<style>
#layer1 {position:absolute; top:50px; left: 150px}
</style>
<div id=layer1><b>YO!YO!YO!YO!YO!YO!YO!</b></div>
You can set anything as a layer.
Read about CSS, and read the CSS forum on this site if this is what you need.
<layer> was an html element that only appeared in Netscape 4 and it never became part of the standard. However, Dreamweaver uses the word "layer" (and confuses many people) to describe a div that is positioned on a z-axis and out of the normal flow of the document because it's positioned absolutely by coordinates. Often this is part of a dHTML system where javascript further changes either the div's position or it's visibility.
So, massacre90, it sounds like you may be looking for a <div> with absolute postition - something like this in the css:
#onmyown {
position:absolute;
top:100px;
left:150px;
z-index:10;
}
and then in the html:
<div id="onmyown">content content content</div>