Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

  1.  
    READ EDIT DOWN!!

    I know this is going to take ages, but I'll do it. Oh, first of all, I'm a 15 year old german guy, so please excuse my bad english. ;) some more information: i'm using Mozilla Firefox. Let's go: I integrated Plogger to Wordpress as explained here: http://www.phoenixrealm.com/2005/09/22/integrating-plogger/ . So after I finished, the code looked like that (code marks start and end with --):

    --

    <?php require('../wp-blog-header.php');
    require("gallery.php"); ?>

    <head profile="http://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />

    <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> <?php wp_title(); ?></title>

    <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->

    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
    <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
    <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />

    <?php wp_get_archives('type=monthly&format=link'); ?>

    <?php wp_head(); ?>

    <?php the_gallery_head(); ?>
    </head>
    <body>

    <div id="page">
    <div id="main">

    <ul id="menu">
    <li><a href="<?php bloginfo('url'); ?>/">lesen</a></li>
    <li><a href="<?php bloginfo('url'); ?>/#">verstehen</a></li>
    <li><a href="<?php bloginfo('url'); ?>/#">lauschen</a></li>
    <li><a href="<?php bloginfo('url'); ?>/#">bestaunen</a></li>
    <li><a href="<?php bloginfo('url'); ?>/#">meinung geigen</a></li>
    </ul>

    <div id="header">
    <div id="headerimg">
    <h1><a href="<?php echo get_settings('home'); ?>"><?php bloginfo('name'); ?></a></h1>
    <p class="description"><?php bloginfo('description'); ?></p>
    </div>
    </div>

    <?php get_header(); ?>

    <div id="content">

    <?php if (have_posts()) : ?>

    <?php while (have_posts()) : the_post(); ?>

    <div class="post">

    <?php the_gallery(); ?>

    </div>

    <p class="postmetadata">Kategorie: <?php the_category(', ') ?> | von <?php the_author() ?> <?php edit_post_link('bearbeiten','','|'); ?> <?php comments_popup_link('kein Kommentar &raquo;', 'Ein Kommentar &raquo;', '% Kommentare &raquo;'); ?></p>

    <!--
    <?php trackback_rdf(); ?>
    -->
    </div>

    <?php endwhile; ?>

    <div class="navigation">
    <div class="alignleft"><?php posts_nav_link('','','&laquo; Previous Entries') ?></div>
    <div class="alignright"><?php posts_nav_link('','Next Entries &raquo;','') ?></div>
    </div>

    <?php else : ?>

    <h2 class="center">404 - nicht gefunden</h2>
    <p class="center"><?php _e("'tschuldigung, aber du suchst was, das es nicht gibt."); ?></p>
    <?php include (TEMPLATEPATH . "/searchform.php"); ?>

    <?php endif; ?>

    </div>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>

    --

    I was happy I did it and looked at the page. And it looked like that: http://www.c-onnect.de/balkon/docu/plogger1.jpg
    As you can see, I got two headers, a really crashed sidebar and many more problems, so I removed line 43 <?php get_header(); ?>, that was taken from the original index.php file from my current theme (orangeSky). And what I got was that: http://www.c-onnect.de/balkon/docu/plogger2.jpg
    Well, the second header is gone, but the sidebar is more crashed than it was with two headers. The image and text doesn't fit together and the white background image is also gone. It should all look like this: http://www.c-onnect.de/balkon/docu/plogger3.jpg

    So, that's it, I don't know much about PHP and that stuff, I'm just editing that things and not writing it ;) can somebody help me? That would be more than nice :)

    Thanks again,
    nicolas


    edit: well, i did it ... i removed the category lines and removed one </div> part .. woohoo!