PE64: das leidige CSS und IE

Beitrag lesen

Hallo Vinzenz

Das ein Word Press Template

Der Typ ist:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//DE" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="de">
<head profile="http://gmpg.org/xfn/11">

Hier der rest:
(index.php)
<body>
<div id="wrapper">
                <div id="bilder">
<?php wp_swfobject_echo("header_images.swf", "width=198", "heigth=109"); ?>
                </div>
   <div id="header">
         <div id="access" role="navigation">
                          <?php /*  Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
                                <?php /* Our navigation menu.  If one isn't filled out, wp_nav_menu falls back to wp_page_menu.  The menu assiged to the primary position is the one used.  If none is assigned, the menu with the lowest ID is used.  */ ?>
                                <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
                        </div><!-- #access -->
                        </div><!-- header -->
(Header.php)
<?php get_header(); ?>
   <div id="main">

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
                                 <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
                                 <div class="entry">
                                        <?php the_content(); ?>
                                 </div>
                          <?php endwhile; endif; ?>

</div><!-- main -->

<?php wp_footer(); ?>
</body>
</html>

Danke