değerli r10 sakinleri aşağıdaki resimdeki boşluğu bir türlü düzeltemedim divlerden birisi fazla ama hangisi çözemedim yardımlarınız bekliyorum şimdiden teşekkürler.


<div id="rightCol">
      <div id="videoBlock">
        <div id="videoBlockTop">
          <h3>son eklenen 10 şarkı</h3>
        </div>
        
        <div id="videoBlockBody">
       <?php
 $postslist = get_posts('numberposts=10&orderby=date');
 foreach ($postslist as $post) : 
    setup_postdata($post);
 ?> 
          <div class="vidBox">
            <div class="sagleftBox">
              <p class="bold"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><b><?php the_title(); ?></b></a></p>
              <p class="light"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><b>şarkıyı dinle</b></a></p>
            </div>
            <p class="sagrightBox"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img class="image" width="35" height="35" alt="<?php the_title(); ?> şarkısını dinlemek için tıklayınız " border="0" src="<?php bloginfo('stylesheet_directory'); ?>/images/oynat.png" /></a></p>
            
          </div>
        <?php endforeach; ?> 
          
        </div>
      </div>
      <div id="videoBlockBot"></div>
    </div>
  </div>