http://www.further-flight.co.uk/index_20080613.php
I would like the background to appear underneath the horizontal menu on this page. My code currently looks like this:
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script src="/style/equalcolumns.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="http://www.further-flight.co.uk/style/20080613.css"/>
<title>FURTHER FLIGHT</title>
</head>
<body>
<?php include($_SERVER['DOCUMENT_ROOT'].'/style/mainmenu.php');?>
</body>
</html>
CSS:
body {
background: url("/media/background.gif") repeat fixed 0px 50px;
}
Suspect it's a simple fix - could anyone point me in the right direction, please?