• 09-07-2010, 20:09:51
    #10
    Üyeliği durduruldu
    css bilgin varsa onu da yapabilirsin. orada pagenavi-css dosyası var. ayarlarıyla oyna biraz
  • 09-07-2010, 20:09:55
    #11
    Üyeliği durduruldu
    style.css; aşağıdaki kodu ekleyin

    .sayfala{display: block;margin-top: 10px;margin-bottom: 40px;}
    index.php;

    <?php get_header(); ?>
     
    	<div id="contentbg-l">
     
    	<?php if (have_posts()) : ?>
     
     
    <?php include (ABSPATH . '/wp-content/plugins/sohbet.php'); ?>
     
    		<?php while (have_posts()) : the_post(); ?>
     
          <div class="post">
     
          <h1><a href="<?php the_permalink() ?>"  rel="bookmark" title="Permanent Link to <?php the_title_attribute();  ?>"><?php the_title(); ?></a></h1>
     
          <p>Kategori: <?php the_category(', ') ?></p>
     
          <?php the_content('Devamını Oku &raquo;'); ?>
     
          <div class="comment">
     
             <p>Yazan <?php the_time('F jS, Y') ?> by <?php  the_author() ?></p>
     
             <p class="comments"><?php comments_popup_link('Yorum  Yok »', '1 Yorum »', '% Yorumlar »'); ?></p>
     
          </div>
     
          </div>
     
     
     
    <?php endwhile; ?>
     
    <div class="sayfala">
    <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>  
     
     </div>
     
     
     
    	<?php else : ?>
     
     
     
    		<h1>Bulunamadı</h1>
     
    		<p class="cont">Üzgünüz, aradığınız şey burada değil.</p>
     
     
     
    	<?php endif; ?>
     
    	</div>
     
    <?php get_sidebar(); ?>
     
    <?php get_footer(); ?>
  • 09-07-2010, 20:13:59
    #12
    .sayfala{display: block;margin-top: 10px;margin-bottom: 40px;}

    bu kodu neresine eklicez ki ?
  • 09-07-2010, 22:53:54
    #13
    Üyeliği durduruldu
    .wp-pagenavi span.extend {
        padding: 2px 4px 2px 4px; 
        background-color: #ffffff;
        margin: 2px;    
        color: #fff;
    
    }
    pagenavi.css dosyasında yukarıdaki kodun altına yapıştır
  • 10-07-2010, 08:53:12
    #14
    Halledildi.Yardımcı Olan Tüm Arkadaşlara Teşekkür Ederim.