Okay, I fixed a problem with the compact view on version .05 in firefox.
If your compact view table has a big gap in it under the table heading and before the product listing, do the following.
edit
./includes/templates/template_default/un_wishlist/tpl_un_wishlist_s.php
and move the hidden inputs out of the table.
So look for this:
Code:<!-- product listing --> <table border="0" cellspacing="0" class="productlist"> <tr class="heading"> <?php echo $oWishlist->getTableHeader(); ?> </tr> <?php if ($listing_split->number_of_rows > 0) { $rows = 0; $products = $db->Execute($listing_split->sql_query); while (!$products->EOF) { if ( $rows & 1 ) { $tdclass = 'even'; } else { $tdclass = 'odd'; } ?> <tr> <input type="hidden" name="products_id[]" value="<?php echo $products->fields['products_id']; ?>" /> <input type="hidden" name="wishlist_quantity[]" value="<?php echo $products->fields['quantity']; ?>" /> <input type="hidden" name="comment[]" value="<?php echo $products->fields['comment']; ?>" /> <?php echo $oWishlist->getTableRow($tdclass, $products); ?> </tr> <?php $rows++; ?> <?php $products->MoveNext(); ?> <?php } // end while products ?> <?php } else { ?> <tr><td colspan="99"><?php echo UN_TEXT_NO_PRODUCTS; ?></td></tr> <?php } ?> </table> <!-- end product listing -->
and set it like this:
Code:<!-- product listing --> <table border="0" cellspacing="0" class="productlist"> <tr class="heading"> <?php echo $oWishlist->getTableHeader(); ?> </tr> <?php if ($listing_split->number_of_rows > 0) { $rows = 0; $products = $db->Execute($listing_split->sql_query); while (!$products->EOF) { if ( $rows & 1 ) { $tdclass = 'even'; } else { $tdclass = 'odd'; } ?> <tr> <?php echo $oWishlist->getTableRow($tdclass, $products); ?> </tr> <?php $rows++; ?> <?php $products->MoveNext(); ?> <?php } // end while products ?> <?php } else { ?> <tr><td colspan="99"><?php echo UN_TEXT_NO_PRODUCTS; ?></td></tr> <?php } ?> </table> <input type="hidden" name="products_id[]" value="<?php echo $products->fields['products_id']; ?>" /> <input type="hidden" name="wishlist_quantity[]" value="<?php echo $products->fields['quantity']; ?>" /> <input type="hidden" name="comment[]" value="<?php echo $products->fields['comment']; ?>" /> <!-- end product listing -->



