View Single Post
  #7 (permalink)  
Old Dec 7th, 2007, 08:52
riet riet is offline
New Member
Join Date: Dec 2007
Location: England
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Bottom up website

Hi Monie,

Thanks again for your reply.

I have tried it on a an example web page using the code you have suggested and i cant seem to get it working. I have attached the code, as you can see its just using some basic styling so i can try to get it working without putting it into the main design first.

HTML: Select all
<style>
DIV#myTopDiv {
 width: 781px; 
 POSITION: absolute; 
 HEIGHT: 500px; 
 top:10px;
 background-color:#33FFFF;
}
DIV#myMiddleDiv {
 width: 781px; 
 POSITION: absolute; 
 HEIGHT: 500px; 
 top:700px;
 background-color:#00CCFF;
}
DIV#myBottomDiv{
 width: 781px; 
 POSITION: absolute; 
 HEIGHT: 500px; 
 top:1500px;
 background-color:#CCCCCC;
}
 
</style>
</head>
<body>
<div id="myTopDiv">
...
</div>
<div id="myMiddleDiv">
...
</div>
 
<a name="section_main">
<div id="myBottomDiv">
...
</div>
 
</body>
I tired this with the #section_main and without in the url bar and i still only had the load onto the top.

Many thanks!
Reply With Quote