hi,
und zwar habe ich ein kleines problem!

Ich habe auf meiner hp (www.flieger-jugend.de) ein menu. Das funzt soweit auch nur wenn ich dann meinen PHP befehl reinsetzte geht es nicht mehr! Also das menu soll dan ausehen wie der link "link7" und das ander das nicht das ist nämlich der PHP befehl!

Also ich benutze ein CMS names Websitebacker !

index code:
PHP-Code:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>

<!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" xml:lang="en" lang="en">

<head>

    <title><?php page_title(); ?></title>
    <meta http-equiv="Content-Type" content="text/html; charset=<?php if(defined('DEFAULT_CHARSET')) { echo DEFAULT_CHARSET; } else { echo 'utf-8'; }?>" />
    <meta name="description" content="<?php page_description(); ?>" />
    <meta name="keywords" content="<?php page_keywords(); ?>" />

    <link href="<?php echo TEMPLATE_DIR?>/screen.css" rel="stylesheet" type="text/css" media="screen" />

   

</head>
<body link="#000000" vlink="#000000" alink="#000000">
      <div id="seite">

           <div id="header">
ddd
           </div>
           
           <div id="menu">
      <div id="tabsF">
  <ul>
    <li><span><?php show_menu(1,0,1); ?></span></li>

    <li><a href="#" title="Link 7"><span>Link 7</span></a></li>
  </ul>
</div>
</div>
           
           <div id="menu2">
            <?php show_menu(1,1,-1); ?>
            <br />

           </div>
           
           <div id="content">
<?php page_content(); ?>
           </div>

           <div id="fooder">
           
           </div>
           
      </div>
</body>

</html>
css code:
Code:
       body
        {
         text-align:center;
         background-image: url(images/bg.png);
         font-family: Arial Black, Times New Roman;
        }
    #seite
     {
      margin: 0 auto;
      top:0px;

      width: 801px;
      text-align:center;
      background-image: url(images/bg.jpg);
     }

    #header
    {
    background: url(images/header.jpg);
    height: 200px;
    width: 801px;
    }

    #menu
    {
     height: 43px;
     float:left;
      display:block;
     background: url(images/menu2.jpg)

    }

    #menu img
    {
     border: 0;
    }

    #menu2
    {
    width: 799px;
    background-image: url(images/menu2.gif);
    border: 1px  black solid;
    text-align: left;
    height: 23px;
    }

    a:
    {
    text-decoration:none;
    color: #000;
    }
    
    #content
    {
    width: 801px;
    font-family: Verdana, Arial;
    }
    
    #fooder
    {
    bottom: 0px;
    width: 801px;
    height: 5px;
    background-image: url(images/fooder.jpg);
    }
    #td
    {
    margin: 0 auto;
    text-align:center;
    }

    #tr
    {
    margin: 0 auto;
    text-align:center;
    }

    #tabsF {
      float:left;
      width:100%;
      font-size:93%;
      line-height:normal;
	  border-bottom:1px solid #666;
      }
    #tabsF ul {
	margin:0;
	padding:10px 10px 0 50px;
	list-style:none;
      }
    #tabsF li {
      display:inline;
      margin:0;
      padding:0;
      }
    #tabsF a {
      float:left;
      background:url("images/tableftF.gif") no-repeat left top;
      margin:0;
      padding:0 0 0 4px;
      text-decoration:none;
      }
    #tabsF a span {
      float:left;
      display:block;
      background:url("images/tabrightF.gif") no-repeat right top;
      padding:5px 15px 4px 6px;
      color:#666;
      }
    /* Commented Backslash Hack hides rule from IE5-Mac \*/
    #tabsF a span {float:none;}
    /* End IE5-Mac hack */
    #tabsF a:hover span {
      color:#FFF;
      }
    #tabsF a:hover {
      background-position:0% -42px;
      }
    #tabsF a:hover span {
      background-position:100% -42px;
      }