2011-12-20 158 views
0

我有設定爲200像素的寬度一個div ..我想WordPress的循環操作在有..代碼:WordPress的環尺寸調整

<div id="main1" width="200px"> 
<?php query_posts('showposts=5'); ?> 
<?php while (have_posts()) : the_post(); ?> 
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a><?php the_content(); ?> <?php comments_number('No Comments','1 Comment','% Comments'); ?><br /><br> 
<?php endwhile;?> 
</div> 

當我輸出的代碼,但是在div轉移到適合屏幕。有關如何調整大小的任何建議?我也嘗試過CSS。我有一個自定義的WP主題即時通訊工作。

+1

您試過了哪些CSS? – marramgrass 2011-12-20 23:08:48

回答

2

嘗試<div id="main1" style="width: 200px;">