• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

Im Header undefinded

killah

Newbie
Hallo Leute,

mir ist es bis jetzt nicht aufgefallen (wegen selber Schriftfarbe wie Headerfarbe). Doch bei mir im Header ist steht so ein undefied:

http://aycu39.webshots.com/image/5998/2000990157340957106_rs.jpg

kann mir bei bestem Willen nicht erklären woher das kommen könnte. Hoffe ihr könnt mir Helfen!

So siehst meine node.tpl.php aus

Code:
  <div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
    <?php if ($picture) {
      print $picture;
    }?>
	<div class="printer" style="font-size: 12px; font-weight: bolder; margin-left: -11em;"><?php if ($links) { ?><div class="links">» <?php print $links?></div><?php }; ?></div>
    <div class="title" style="font-size: 16px; font-weight: bolder; margin-bottom: 1em; margin-left: -2px; color: #FFFFFF; margin-top: -20px;"> <?php echo $node -> title; ?></div>
    <span class="submitted"><?php print $submitted?></span>

    <div class="content"><?php print $content?></div>
    
  </div>

page.tpl.php

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" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">

<head>
  <title><?php print $head_title ?></title>
  <?php print $head ?>
  <?php print $styles ?>
  <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
</head>

<body>
<table width="50" border="0" cellpadding="0" cellspacing="0" id="header">
  <tr>
    <td width="19%" id="logo" style="padding-right:4em">
      <?php if ($logo) { ?><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php if ($is_front) { print 			      $logo; } else { print $base_path . 'files/alternatives_logo.jpg'; } ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>    </td>
    <td width="56%" align="left" id="title" style="color:#3399cc; padding-top: 6em; font-size: 16px; font-weight: bold; padding-left: 10.5em; padding-right: 6em;">
		
		   <?php
        	$terms = taxonomy_node_get_terms($node->nid);
        	$termlist = array();
        	foreach ($terms as $key => $tobj) {
        	$termlist[] = $tobj->name;}
			echo($termlist[0]);
		?> </td>
    <td width="25%" id="unilogo"><div align="right"><a href="http://www.uni-wuppertal.de/" title="<?php print t('Home') ?>"><img src="<?php print $base_path . 'files/loewe.jpg' ?>"  alt="http://www.uni-wuppertal.de/"  width="165" height="51" style="float:right; margin: 3em;" /></a></div></td>
  </tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" id="content">
  <tr>
    <?php if ($sidebar_left) { ?><td id="sidebar-left">
      <?php print $sidebar_left ?>
    </td><?php } ?>
    <td valign="top">
      <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
      <div id="main">
        
        <div class="tabs"><?php print $tabs ?></div>
		
        <?php print $help ?>
		
        <div style="margin: 2em 12em 2em 9.8em; font-size: 16px; font-weight: bolder;"> <?php print $links?></div>
		<?php print $messages ?>
        <?php print $content; ?>
      </div>
    </td>
    <?php if ($sidebar_right) { ?><td id="sidebar-right">
      <?php print $sidebar_right ?>
    </td><?php } ?>
  </tr>
</table>


<div id="footer">
  <?php print $footer_message ?>
</div>
<?php print $closure ?>
</body>
</html>

[/code]

Mfg, Ak187
 
Oben