Hallo Leuts,
ich hab ein Problem mit der Darstellung. Liegt wahrscheinlich an der Css... kriegs irgendwie nicht auf die Reihe.
Bild, klick mich:
[Blockierte Grafik: http://img411.imageshack.us/img411/5743/errorsd1.jpg]
So sieht der Teil der *.php Seite aus:
PHP
<div id="main"><!--start main-->
<div id="about"><!--about start-->
<div class="about_col1"><!--start about col 01-->
<h2 class="about">
<a href="<?php the_permalink() ?>" rel="lesezeichen" title="link zu <?php the_title(); ?>"><?php the_title(); ?></a>
</h2>
<p>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="entry">
<?php the_content('Den ganzen Beitrag lesen »'); ?>
</div>
<?php endwhile; ?>
<?php else : ?>
<?php endif; ?>
</p>
</div><!--end about col 01-->
<div class="about_col2"><!--start about col 02-->
titel: <span class="titel"><a href="<?php the_permalink() ?>" rel="lesezeichen" title="link zu <?php the_title(); ?>"><?php the_title(); ?></a></span> <br />
datum: <?php the_time('j. F Y') ?> <!-- von <?php the_author() ?> --><br />
kategorie: <?php the_category(', ') ?><br />
kommentare: <?php comments_popup_link('0 kommentare', '1 kommentar', '% kommentare'); ?> <br />
tags: content, allgemein, wordpress<br />
admin: <?php edit_post_link('bearbeiten','',''); ?>
</p>
</div><!--end about col 02-->
</div><!-- end about-->
</div><!--end main-->
Alles anzeigen
Und das ist der css-teil dazu:
Code
#about {
width: 900px;
height: auto;
padding-top: 20px;
padding-bottom: 20px;
float: left; }
.about_col1 {
width: 562px;
margin-right: 18px;
float: left; }
.about_col2 {
width: 260px;
margin-left: 0px;
line-height: 18px;
border-left: solid 5px #01B7EA;
padding-left: 15px;
float: left; }
Alles anzeigen
Ich danke euch jetzt schonmal für euere Hilfe.
Gruss VolkanZ