vietboy505
Technical User
I want my copyright.php file to be in the bottom center, menu to be left. Any help?
Right now my copyright.php is at the top.
Also, can I combine logo.php & copyright.php into a file? This way I don't have to embed two divs for each .php.
Don't know how would this work since the link & image will be at different position.
Code:
<div id=menu style="float:left">
<? include('nav_link.php') ?>
</div>
<div id=logo style="float:top; float:right">
<? include('logo.php') ?>
</div>
<div id=copyright style="float:bottom; float:center">
<? include('copyright.php') ?>
</div>
Right now my copyright.php is at the top.
Also, can I combine logo.php & copyright.php into a file? This way I don't have to embed two divs for each .php.
Don't know how would this work since the link & image will be at different position.