Hey folks... I've got three includes at the top of my pages
Code:
<?php require_once('../include_header.php'); ?>
<?php require_once('../nav/include-nav.php'); ?>
<?php require_once('../include_search.php'); ?>
The first include is an image within a table
Second is a menu within <div> tags
Third is another row of images in a table
{=======header========}
{+++++++navigation+++++}
{----------search---------}
Everything looks good in IE 6 (amazingly) but when I go to Safari and Firefox, the 2nd & 3rd includes are on the same line and the bottom scrollbar seems to go on horizontally forever:
{=======header========}
{+++++++navigation+++++}{----------search---------}
If I add <br/> tags it drops the search down, but then there is a big gap in IE.
Any ideas???