Moinsen,
kann auch ein Formatierungsfehler sein.
Bastle mir Grad ein eigenes theme weil ich mit dem Angebot nicht so zufrieden bin !
Also habe ich mir von lernenhoch2.de die Dateistruktur genommen, soweit alles guti,
Nur wenn man auf meine Seite geht; http://www.bilder-blogger.de ist die Überschrift zu sehr nach Rechts verrutscht und das Menü nach unten gelandet.
Wenn ich jedoch auf den Beitrag drücke ist alles I.O also die Anordnung.
Hier mal meine css;
HTML
body {color: #333; background: #e5e5e5;}
#wrapper {width: 850px; margin: auto; text-align: left; background: #fff;}
#header {height: 160px; padding: 20px; border-bottom: 1px solid #ccc;}
#main {width: 520px; padding: 20px; float: left;}
#sidebar {width: 270px; padding: 10px; padding-top: 20px; float: left;}
#footer {clear: both; height: 100px; padding: 20px; }
Hier die Index.php
PHP
<?php get_header(); ?>
<div id="main"></div><!-- 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; ?>
<p align="center"><?php next_posts_link('« Ältere Einträge') ?> | <?php previous_posts_link('Neuere Einträge »') ?></p>
<?php endif; ?>
<div id="sidebar">
<?php get_sidebar(); ?>
</div><!-- sidebar -->
<?php get_footer(); ?>
Alles anzeigen
Vll. habt Ihr mal ein Tipp für mich !
Lg
Dennis