删除Virtuemart“特色产品”模块中的空白区域

时间:2011-12-20 19:14:48

标签: html joomla joomla1.5 virtuemart joomla-module

我在弄清楚如何摆脱空白时遇到了一些麻烦。我真的不知道我做错了什么,我不知道html是否知道这是不是问题。

附上截图:

1)如果我按原样保留代码,我的图像会与下面的模块重叠。 Original code

Original code with highlights

2)如果我修改代码使表格单元格高度为400px,则会产生大量的空白区域。 Modified code height=400px

Modified code height=400px with highlights

3)如果我修改代码使表格单元格高度为1-399px,则会产生太多的空白区域或重叠区域。

修改后的代码注意:我使用的是“横向”显示样式):

<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
    <span style="color:green"><b>> <b></span>Click here to <a href="http://localhost/joomlawebsite/index.php?option=com_content&view=article&id=52"><span style="color:blue"><b>view all featured products</b></span></a>.
</tr>
<?php
$i = 0;
while($db->next_record() ){
    if ($i%2)
    $sectioncolor = "sectiontableentry2";
    else
    $sectioncolor = "sectiontableentry1";

    if( $display_style == "vertical" ) {
    ?>
        <tr align="center" class="<?php echo $sectioncolor ?>">
            <td width="<?php echo $width ?>%">
                <?php 
                $ps_product->show_snapshot($db->f("product_sku"), $show_price, $show_addtocart);
                ?><br />
            </td>
        </tr>
    <?php
    }
    elseif( $display_style== "horizontal" ) {
        if( $i == 0 )
        echo "<tr>\n";
        echo "<td height=\"400px\" width=\"$width%\" align=\"center\">";
        $ps_product->show_snapshot($db->f("product_sku"), $show_price, $show_addtocart);
        echo "</td>\n";
        if( ($i+1) == $db->num_rows() )
        echo "</tr>\n";
    }
    elseif( $display_style== "table" ) {
        if( $i == 0 )
        echo "<tr>\n";
        echo "<td width=\"$width%\" align=\"center\">";
        $ps_product->show_snapshot($db->f("product_sku"), $show_price, $show_addtocart);
        echo "</td>\n";
        if ( ($i+1) % $products_per_row == 0)
        echo "</tr><tr>\n";
        if( ($i+1) == $max_items )
        echo "</tr>\n";
    }
    $i++;
}?></table>

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

更改位于 components / com_virtuemart / themes /“yourtemplate”/templates/common/productsnapshot.tpl.php

<!-- The product name DIV. -->
我将div样式代码更改为:

<div style="height:35px; float:left; width: 100%;line-height:14px;">



<!-- The product image DIV. -->
我将div样式代码更改为:

<div style="width: 100%;float:left">

它带走了所有不必要的空白