This is a simple question but since I am having problems with it, I am asking it here.
I have a div inside a file called head.php
in my index.php, when i do <? include ("head.php"); ?>
and then do something like <div style="margin:0 auto; width:900px"></div>
it shows the two div's(head and the box in index.php), but I want the box to show after the head div. Right now, it shows the second div width 100% height and the head div on top of it so if I write something in the second div, it gets hidden behind the head div. I know I can use padding but I need to move the whole box down so it comes in sequential order (included head.php first so head div should show first, then after that, it should show the second div)
Any ideas?
Thanks for the help!