Hi,
I didn't understand what you meant by this:
"My Content TEXT IS HERE" need to be under the menu div (like 100px up
If it was 100px up then that would place it in your header div which I'm sure is not what you want. If you wanted it moved 100px down the page then place it in a div with a 100px top margin or add 100px top padding to the existing container. I don't think that's what you mean either. 
I do notice that your absolute elements are obscuring the text and you need to set the appropriate z-index as follows.
Code:
<div id="content">
<div id="content-top-right"> </div>
<div id="content-top-left"> </div>
<div class="inner">
<p>My Content TEXT IS HERE </p>
<p>My Content TEXT IS HERE </p>
<p>My Content TEXT IS HERE </p>
<p>My Content TEXT IS HERE </p>
<p>My Content TEXT IS HERE </p>
<p>My Content TEXT IS HERE </p>
<p>My Content TEXT IS HERE </p>
<p>My Content TEXT IS HERE </p>
</div>
<div id="content-bottom">
<div id="content-bottom-right"> </div>
<div id="content-bottom-left"> </div>
</div>
</div>
Code:
.inner {
position:relative;
z-index:99;
padding:1px 10px;
width:992px;
}
Bookmarks