Помогите, правлю внешний вид корзины basket, удалила оттуда артикул и раздвинула немного поля. Но меня все равно не устраивает ее внешний вид. Название Цена Количество / Обновить Промежуточный итог Как сделать так, чтобы это все было в виде таблицы???? Т.е. строки столбцы остаются, но чтобы были прорисованы границы. Спасибо заранее за ответ
Я просто не чего не понял=( Я конечно нуб в joomle но возможно если это связано с php или html смогу помочь!
вот код: Код (CODE): <?php if( !defined( '_VALID_MOS' ) && !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' ); /** * This is the default Basket Template. Modify as you like. * * @version $Id: basket_b2c.html.php 1377 2008-04-19 17:54:45Z gregdev $ * @package VirtueMart * @subpackage templates * @copyright Copyright (C) 2004-2005 Soeren Eberhardt. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * VirtueMart is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See /administrator/components/com_virtuemart/COPYRIGHT.php for copyright notices and details. * * http://virtuemart.net */ ?> <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script> <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" /> <table width="100%" border="0" cellpadding="4" cellspacing="2"> <tr align="left" class="sectiontableheader"> <th width="27%"><?php echo $VM_LANG->_('PHPSHOP_CART_NAME') ?></th> <th width="14%" class="sectiontableheader"><?php echo $VM_LANG->_('PHPSHOP_CART_PRICE') ?></th> <th width="30%" class="sectiontableheader"><?php echo $VM_LANG->_('PHPSHOP_CART_QUANTITY') ?> / <?php echo $VM_LANG->_('PHPSHOP_CART_ACTION') ?></th> <th width="12%" class="sectiontableheader"><div align="center"><?php echo $VM_LANG->_('PHPSHOP_CART_SUBTOTAL') ?></div></th> </tr> <?php foreach( $product_rows as $product ) { ?> <tr valign="top" class="<?php echo $product['row_color'] ?>"> <td><?php echo $product['product_name'] . $product['product_attributes'] ?></td> <td align="center" class="<?php echo $product['row_color'] ?>"><?php echo $product['product_price'] ?></td> <td class="<?php echo $product['row_color'] ?>"><?php echo $product['update_form'] ?> <?php echo $product['delete_form'] ?> </td> <td align="right" class="<?php echo $product['row_color'] ?>"><?php echo $product['subtotal'] ?></td> </tr> <?php } ?> <!--Begin of SubTotal, Tax, Shipping, Coupon Discount and Total listing --> <tr class="sectiontableentry1"> <td colspan="4" align="right"><?php echo $VM_LANG->_('PHPSHOP_CART_SUBTOTAL') ?>:</td> <td width="17%" colspan="3" align="right" class="sectiontableentry1"><?php echo $subtotal_display ?></td> </tr> <?php if( $discount_before ) { ?> <tr class="sectiontableentry1"> <td colspan="4" align="right"><?php echo $VM_LANG->_('PHPSHOP_COUPON_DISCOUNT') ?>: </td> <td colspan="3" align="right" class="sectiontableentry1"><?php echo $coupon_display ?></td> </tr> <?php } if( $shipping ) { ?> <tr class="sectiontableentry1"> <td colspan="4" align="right"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_SHIPPING') ?>: </td> <td colspan="3" align="right" class="sectiontableentry1"><?php echo $shipping_display ?></td> </tr> <?php } if($discount_after) { ?> <tr class="sectiontableentry1"> <td colspan="4" align="right"><?php echo $VM_LANG->_('PHPSHOP_COUPON_DISCOUNT') ?>: </td> <td colspan="3" align="right" class="sectiontableentry1"><?php echo $coupon_display ?></td> </tr> <?php } ?> <tr> <td colspan="4"> </td> <td colspan="3"><hr /></td> </tr> <tr class="sectiontableentry1"> <td colspan="4" align="right"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_TOTAL') ?>: </td> <td colspan="3" align="right" class="sectiontableentry1"><strong><?php echo $order_total_display ?></strong></td> </tr> <?php if ( $show_tax ) { ?> <tr class="sectiontableentry1"> </tr> <?php } ?> <tr> <td colspan="7"><hr /></td> </tr> </table> <span id="sprytextfield1"> <input type="text" name="text1" id="text1" /> <span class="textfieldRequiredMsg">A value is required.</span></span> <script type="text/javascript"> <!-- var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1"); //--> </script> Нужно сделать чтобы это все было ввиде таблицы. Сейчас оно отображается в виде таблицы, но только с невидимыми границами, в общем мне нужно границы сделать, т.е. разлиновку по срокам и столбцам