您在這裡

請教:兩列顯示圖片文章列錶

linlin's 的頭像
linlin 在 2006-09-12 (二) 01:50 發表

大傢好!

我用Views module 和image module 實現圖片類文章列錶顯示(縮略圖+文章標題,上圖下標題),現在做了一個image分類的圖片列錶顯示頁,默認的是一列顯示,很難看,如何讓它兩列或更多列顯示?

請指教,謝謝!

下面的程式碼默認是一列顯示,我想改為兩列顯示

<?php print $nid_label ?>
<?php print $nid?>
<?php print $title_label ?>
<?php print $title?>

嘗試用

,但還是顯示一列:)

  • <?php print $nid_label ?>
    <?php print $nid?>

    <?php print $title?>

    <?php print $title_label ?>

請指教,謝謝!

謝謝囬復。

是的
上面的ul li 夾在了drupal.css定義的item-list的ul li中間

  • 圖片列錶ul li

脩改暸item-list也不行,不知道drupal那個地方控製輸齣

哦,抱歉,我是在本地試用drupal,還沒有買主機。
找到了控製顯示的函數了
includes/theme.inc ----->function theme_item_list()


function theme_item_list($items = array(), $title = NULL, $type = 'ul') {
$output = '

';
if (isset($title)) {
$output .= ''. $title .'';
}

if (!empty($items)) {
$output .= "<$type>";
foreach ($items as $item) {
$output .= '

  • '. $item .'
  • '; // have a li
    }
    $output .= "";
    }
    $output .= '

    ';
    return $output;
    }

    這樣循環,使

  • 中包含了


    變成
      • ....

    這樣是不對,不需要這麼多style和ul,應該變成這樣:

    謝謝囬應!
    看過,感覺這裏的問題應該不是css的問題,可能是解決問題的方嚮錯暸,是不是要從程序方麵研究?但我的php知識可能解決不暸這個問題。