Hallo Zusammen, Ich habe auf meiner Startseite zwei Kasten auf der rechten Seite neben der Navigation und unter dem Header. Einer Links der andere rechts. "left und rightcol", warum jedoch rutscht mir die leftcol immer rauf und bildet eine ganze Linie. ich würde diese gerne neben meiner rightcol haben. Wenn ich beide als rightcol benenne klappt es aber beide sind rechts, zwar nebeneinander, aber rechts ohne Zwischenraum.
PHP
<?php get_header(); ?>
<div id="right">
<div class="leftcol">
<h3>Reinforcement Learning</h3>
<p><img src="images/image.gif" alt="Image" class="image" />Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.</p>
<h3>Statistical Learning Methods</h3>
<p><img src="images/image.gif" alt="Image" class="image" />Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.</p>
</div>
<div class="rightcol">
<h3>Reinforcement Learning</h3>
<p><img src="images/image.gif" alt="Image" class="image" />Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.</p>
<h3>Statistical Learning Methods</h3>
<p><img src="images/image.gif" alt="Image" class="image" />Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.</p>
</div>
<div class="leftcol">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<a id="post-<?php the_ID(); ?>" href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>""><h3><?php the_title(); ?></h3></a>
<p>
<?php the_content(''); ?>
</p>
<div class="metadata"><?php the_time('d M y'); ?> | <?php the_category(', ') ?> | <a href="<?php the_permalink() ?>">Mehr lesen</a> | <?php comments_popup_link('Kommentare (0)', 'Kommentar (1)', 'Kommentare (%)'); ?><?php edit_post_link('Bearbeiten',' | ',''); ?></div>
<?php endwhile; ?>
<?php else : ?>
<h3>Herzlich Willkommen...</h3>
<p>Diese Seite befindet sich zur Zeit noch im Aufbau.</p>
<?php endif; ?>
<div style="clear:both"></div>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Previous Posts') ?></div>
<div class="alignright"><?php previous_posts_link('Next Posts »') ?></div>
</div>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen