selam arkadaşlar tema kodlamaya çalışıyorum şöyle bir sorun ile karşılaştım. ilk yazıyı, başlığı ve yazı başlık backgroundunu görüntülemeyi başardım fakat yazılar üst üste biniyor sanki başka bir kolon açılmıyor kodlar ve görüntü şu şekilde.
<?php get_header(); ?>
<nav>
<div class="box">
<div class="title">
<?php the_title(); ?>
</div>
<div class="pcontent">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
</div>
<div class="devam">
<ul>
<li>Okunma</li>
<li>Kategori</li>
<li>Yorum Sayisi</li>
</ul>
</div>
</div>
</nav>
<?php get_footer(); ?>

--R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 23:09:23 -->-> Daha önceki mesaj 22:43:04 --
edit:
arkadaşlar yazıyı çıakrdım ama bu seferde yazının backgroundu çıkmıyor
Alıntı
<?php get_header(); ?>
<nav>
<div class="box">
<div class="title">
<?php the_title(); ?>
</div>
<div class="pcontent">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
</div>
<div class="devam">
<ul>
<li>Okunma</li>
<li>Kategori</li>
<li>Yorum Sayisi</li>
</ul>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</nav>
<?php get_footer(); ?>