2012-06-12 25 views
0

我想添加清除浮動到「閱讀更多鏈接」(它說:「Läsmer」在我的網站上,瑞典語) in WordPress (循環)。我想添加明確的浮動到「閱讀更多鏈接」在wordpress(循環)

這裏是我的循環,

<?php query_posts($query_string . '&cat=-3'); ?> 
     <ul id="customStart" class="group"> 
      <?php query_posts('showposts=55&cat=5,'); 
         if (have_posts()) : ?> 
        <?php while (have_posts()) : the_post(); ?> 
         <li> 
         <div class="blogPostInfo"><?php the_time('l, F jS, Y') ?><div class="fltLeft"> | <?php the_category(', ') ?></div></div> 
         <div id="startBg"> 
         <?php the_post_thumbnail('start-pic'); ?> 
         </div> 
          <h2><?php the_title(); ?></h2> 
         <?php the_content(__('<span class="meta-nav"> Läs mer</span>', 'twentyten')); ?> 
         </li> 
         <?php endwhile; ?> 
        </ul> 
        <?php endif; wp_reset_query();?> 

http://www.missbee.se/eliteRehab2/


在現場看的下部看發現我想要清除按鈕 ; O)

回答

0

你爲什麼不編輯CSS文件,並添加

clear:bothclear:leftclear:right屬性

.meta-nav類?

+0

我已經嘗試過了,不能讓它工作.. – wpdesign

+0

你有沒有檢查在Firebug或Chrome開發工具的要素是什麼?它是否被別的東西重寫?嘗試'明確:既important' –

0

添加

.meta-nav 
{clear:left | both | right; 
} 

style.css在主題CSS表。

+0

感謝名單,但鴕鳥政策工作...! – wpdesign

相關問題