Einzelnen Beitrag anzeigen
Alt 18.05.2008, 09:09   #7 (permalink)
Stopart
PostRank: 0
 
Registriert seit: 05.04.2008
Beiträge: 11
Ich hab jetzt mal ein bißchen probiert, und gemerkt, dass wenn ich den Header austausche, die Formatierung wieder da ist. Nur leider paßt der ausgetauschte header nicht zu meinem Design. Könnte bitte mal jemand schauen, ob es im Header noch ne Möglichkeit gibt, wo der Fehler versteckt ist? the_excerpt gibt es da nämlich auch nicht:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//DE" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="de">

<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />

  <link rel="stylesheet" type="text/css" media="screen,projection,print" href="<?php bloginfo('template_directory'); ?>/mf54_reset.css" />

  <link rel="stylesheet" type="text/css" media="screen,projection,print" href="<?php bloginfo('template_directory'); ?>/mf54_grid.css" />
  <link rel="stylesheet" type="text/css" media="screen,projection,print" href="<?php bloginfo('stylesheet_url'); ?>" />
  <link rel="icon" type="image/x-icon" href="<?php bloginfo('template_directory'); ?>/img/favicon.ico" />
  
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />

<?php
global $page_sort1;    
    if(get_settings('Multiflex_52_sortpages1')!='')
    {
        $page_sort1 = 'sort_column='. get_settings('Multiflex_52_sortpages1');
    }    
global $pages_to_exclude1;    
    if(get_settings('Multiflex_52_excludepages1')!='')
    { 
        $pages_to_exclude1 = 'exclude='. get_settings('Multiflex_52_excludepages1');
    }
global $page_sort2;    
    if(get_settings('Multiflex_52_sortpages2')!='')
    {
        $page_sort2 = 'sort_column='. get_settings('Multiflex_52_sortpages2');
    }    
global $pages_to_exclude2;    
    if(get_settings('Multiflex_52_excludepages2')!='')
    { 
        $pages_to_exclude2 = 'exclude='. get_settings('Multiflex_52_excludepages2');
    }
?>
<?php wp_head(); ?>
</head>

<!-- Global IE fix to avoid layout crash when single word size wider than column width -->
<!-- Following line MUST remain as a comment to have the proper effect -->
<!--[if IE]><style type="text/css"> body {word-wrap: break-word;}</style><![endif]-->

<body>
  <!-- CONTAINER FOR ENTIRE PAGE -->

  <div class="container">

    <!-- A. HEADER -->         
    <div class="corner-page-top"></div>        
    <div class="header">
      <div class="header-top">
        
        <!-- A.1 SITENAME -->      
        <a class="sitelogo" href="index.html" title="Home"></a>
        <div class="sitename">
          <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1> 
          <h2><?php bloginfo('description'); ?></h2>

        </div>
    
        <!-- A.2 BUTTON NAVIGATION -->
        <div class="navbutton"></div>

        <!-- A.3 GLOBAL NAVIGATION -->
        <div class="navglobal">        </div>
      </div>
    
      <!-- A.4 BREADCRUMB and SEARCHFORM -->
      <div class="header-bottom">

        <!-- Breadcrumb -->
        <ul>
          <li class="nobullet">Sie befinden sich hier:&nbsp;</li>
          <li><a href="<?php echo get_option('home'); ?>/">Hamburg</a></li>
          <?php if (is_home()) { } else { ?><li><?php wp_title(''); ?></li><?php } ?>      
        </ul>

        <!-- Search form -->                  
        <div class="searchform">
          <form action="<?php bloginfo('url'); ?>/" method="get">
            <fieldset>

              <input class="field" value="<?php the_search_query(); ?>" name="s" />
              <input type="submit" class="button" value="Suche" />
            </fieldset>
          </form>
        </div>
      </div>
    </div>      
    <div class="corner-page-bottom"></div>    
    
    <!-- B. NAVIGATION BAR -->
    <div class="corner-page-top"></div>        
    <div class="navbar">
      <ul>
      <?php wp_list_pages('title_li=&depth=2&'.$page_sort2.'&'.$pages_to_exclude2); ?>
</ul>

            
</div>    
  
    <!-- C. MAIN SECTION -->      
    <div class="main">
Vielen Dank!!!!!!!!!!!
Stopart ist offline   Mit Zitat antworten