Hey there, I have a webpage with some div's in it ...
<div id='logo' align='center' style='position:absolute; width:98%; height:69; left: 1%; top: 5px; visibility: visible'>
first div at the top of my page (for the logo)
</div>
<div id='menu' style='position:absolute; width:98%; height:20px; left: 1%; top: 93px; visibility: visible'>
second div, under the logo, with the menu
</div>
<div id='main' style='position:absolute; width:98%; left: 1%; top: 150px; visibility: visible'>
<?
include($somepage.".php");
?>
the main section of my website ... in this div I show different pages with an include
</div>
<div id='disclaimer' style='position:relative; width:98%; left: 1%; visibility: visible'>
disclaimer (bottom of the page)
</div>
This is working well, only the disclaimer. How can I show the disclaimer at the bottom of my page? Notice, that in the main section of my website I show different pages with different sizes.
The One And Only KryptoS
<div id='logo' align='center' style='position:absolute; width:98%; height:69; left: 1%; top: 5px; visibility: visible'>
first div at the top of my page (for the logo)
</div>
<div id='menu' style='position:absolute; width:98%; height:20px; left: 1%; top: 93px; visibility: visible'>
second div, under the logo, with the menu
</div>
<div id='main' style='position:absolute; width:98%; left: 1%; top: 150px; visibility: visible'>
<?
include($somepage.".php");
?>
the main section of my website ... in this div I show different pages with an include
</div>
<div id='disclaimer' style='position:relative; width:98%; left: 1%; visibility: visible'>
disclaimer (bottom of the page)
</div>
This is working well, only the disclaimer. How can I show the disclaimer at the bottom of my page? Notice, that in the main section of my website I show different pages with different sizes.
The One And Only KryptoS