sağ sidebar ı aşağıdaki ile değişin.

Alıntı
<h1>Duyurular</h1>
<ul>
<marquee onmouseover="this.stop()" onmouseout="this.start()" scrollamount="1" scrolldelay="10" direction="up">

<?php query_posts($query_string . '&showposts=10'); ?>
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>

<li class=" ">
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</li>
<?php endwhile; ?>
<?php endif; ?>
</marquee>
</ul>
yukardaki olmaz ise aşağıdakini deneyin.


Alıntı
<h1>Duyurular</h1>
<ul>
<marquee onmouseover="this.stop()" onmouseout="this.start()" scrollamount="1" scrolldelay="10" direction="up">

<?php query_posts('showposts=10'); ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a><br />
<?php endwhile;?>

<?php endif; ?>
</marquee>
</ul>