Hi!
I looked in the tutorials and forums and tried several things including relocating the Attributes Module --> section but I can't work out what I need to change.
As it is the Add to Cart section looks like this (as this product has an attribute the customer much choose)
[SCR]http://www.lemongrassmedia.com/zc_01.jpg[/SCR]
I want the Attributes Options section to be allighned right so it has more chance of being seen than it is now.
I have managed to align the Please Choose text right but can't align the rest.
eg
[SCR]http://www.lemongrassmedia.com/zc_02.jpg[/SCR]
I'm guessing it's something in tpl_modules_attributes.php - here is what I have now
Can someone please point me in the right direction or change the code for me (my head hurts)Code:<?php /** * Module Template * * Template used to render attribute display/input fields * * @package templateSystem * @copyright Copyright 2003-2005 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version $Id: tpl_modules_attributes.php 3208 2006-03-19 16:48:57Z birdbrain $ */ ?> <style type="text/css"> #productAttributes { text-align: right; } </style> <div id="productAttributes"> <?php if ($zv_display_select_option > 0) { ?> <h3 id="attribsOptionsText"><?php echo TEXT_PRODUCT_OPTIONS; ?></h3> <?php } // show please select unless all are readonly ?> <?php for($i=0;$i<sizeof($options_name);$i++) { ?> <?php if ($options_comment[$i] != '' and $options_comment_position[$i] == '0') { ?> <h3 class="attributesComments"><?php echo $options_comment[$i]; ?></h3> <?php } ?> <style type="text/css"> #wrapperAttribsOptions { text-align: right; } </style> <div class="wrapperAttribsOptions"> <h4 class="optionName back"><?php echo $options_name[$i]; ?></h4> <div class="back"><?php echo "\n" . $options_menu[$i]; ?></div> <br class="clearBoth" /> </div> <?php if ($options_comment[$i] != '' and $options_comment_position[$i] == '1') { ?> <div class="ProductInfoComments"><?php echo $options_comment[$i]; ?></div> <?php } ?> <?php if ($options_attributes_image[$i] != '') { ?> <?php echo $options_attributes_image[$i]; ?> <?php } ?> <br class="clearBoth" /> <?php } ?> <?php if ($show_onetime_charges_description == 'true') { ?> <div class="wrapperAttribsOneTime"><?php echo TEXT_ONETIME_CHARGE_SYMBOL . TEXT_ONETIME_CHARGE_DESCRIPTION; ?></div> <?php } ?> <?php if ($show_attributes_qty_prices_description == 'true') { ?> <div class="wrapperAttribsQtyPrices"><?php echo zen_image(DIR_WS_TEMPLATE_ICONS . 'icon_status_green.gif', TEXT_ATTRIBUTES_QTY_PRICE_HELP_LINK, 10, 10) . ' ' . '<a href="javascript:popupWindowPrice(\'' . zen_href_link(FILENAME_POPUP_ATTRIBUTES_QTY_PRICES, 'products_id=' . $_GET['products_id'] . '&products_tax_class_id=' . $products_tax_class_id) . '\')">' . TEXT_ATTRIBUTES_QTY_PRICE_HELP_LINK . '</a>'; ?></div> <?php } ?> </div>


Reply With Quote
