I can't seem to figure this out, pulling a menu with basic PHP http://www.edango.com/temp/SimpleIndex/index.php The menu doesn't work on this page but works here: http://www.edango.com/temp/SimpleIndex/menu.php I've double checked the CSS files to make sure they're not any conflicts, all the names are different, yet the scroll feature won't work on the index page, any suggestions / ideas? $3 and positive iTrader to get this fixed for me, thanks
the index.php works in ie but not in firefox checkout this: for your menu.php the css checks out fine, but for the index.php it has errors http://jigsaw.w3.org/css-validator/...rofile=css21&usermedium=all&warning=1&lang=en
There are all sorts of extra HTML tags in the first one. Are your PHP files complete web pages? They should only have partial code if you are importing them into other PHP files. You should check that the code being imported isn't duplicating bits that are already in there, like the header. I would move header, logo, and menu code to menu.php. Then have <?php include ("menu.php"); ?> as the first line in index.php menu.php <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml2/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>SimpleIndex</title> <link rel="stylesheet" media="all" type="text/css" href="main.css" /> <link rel="stylesheet" media="all" type="text/css" href="pro_dropline.css" /> <!--[if IE]> <link rel="stylesheet" media="all" type="text/css" href="pro_dropline_ie.css" /> <![endif]--> </head> <body> <table align="center"> <tr> <td> <div class="logoheader"> <center> <img src="images/SimpleSoftwareLogo.jpg" align="center"> </center> </div> <div class="nav"> <div class="table"> <!-- MENU CODE --> </div> </div> Code (markup): index.php <?php include("menu.php"); ?> <br><br> <!-- MAIN CONTENT CODE --> </td> </tr> </table> </body> </html> Code (markup):