I have no idea how to explain it
see for yourslef
Site index code:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>The Wireless Shack</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="includes/iestylesheet.php">
<![endif]-->
<link rel="stylesheet" type="text/css" href="includes/stylesheet.php">
<link rel="shortcut icon" href="images/favicon.ico" />
</head>
<body>
<div id="wrapper">
<a href=#><div id="header"></div></a>
<?PHP include('includes/navmenu.php'); ?>
<div id="main">
<div id="article">
<div id="articledetails">Article Details Go Here</div>
<div id="articlecontent">Article Goes Here</div>
<div id="articleimages">Article Images Go Here</div>
</div>
</div>
<div id="footer">
© 2008-2009 The Wireless Shack
<a href="aboutus">About Us</a> |
<a href="contactus">Contact Us</a> |
<a href="login">Login</a>
</div>
</div>
</body>
</html>
/downloads index.php code
Code:
<?PHP include('../includes/navmenu.php'); ?>
navmenu.php code
Code:
<div id="navmenu">
<form>
<input type="text" size="20">
<input type="submit" value="Search">
</form>
<a href="#" class="button">HomePage</a> |
<a href="../downloads" class="button">Downloads</a> |
<a href="../archives" class="button">Archives</a> |
<a href="../tags" class="button">Tags</a>
</div>
When you access the menu from the /downloads index.php page, they work fine,
but when you access them from the sites main page, they dont work as supposed to
i've been trying to figure out a solution for hours, please help !
Last edited by Rajaie; 02-05-2008 at 07:18 AM..
|