i've got a problem...
im trying to convert my iframe site to php include
i have 4 include:
- header
- sidebar
- main/content
- footer
so this is how its look like:
<?php include('header.php'); ?>
<div id="nav">
<?php include('sidebar.php'); ?>
</div>
<div id="content">
<?php include('home.php'); ?>
</div>
<?php include('footer.php'); ?>
everything went well, except the DIV ID part...its seems like it wont work, my css for those ID are:
#nav {
position: absolute; left: 204px; top: 360px; overflow:auto;}
#content {
position: absolute; left: 182px; top: 40px; overflow:auto;}
somebody can help me? 😕