Witam, mój kod wyświetla elementy jeden pod drugim a chciałbym je mieć w linii (obok siebie).
Wygląda to tak:

<?php
$_product = $this->getProduct();
$_attributes = Mage::helper('core')->decorateArray($this->getAllowAttributes());
?>
<?php if ($_product->isSaleable() && count($_attributes)):?> <dl>
<?php foreach($_attributes as $_attribute): ?>
<dt><label>
<?php echo $_attribute->getLabel() ?><span class="required"> *</span></label></dt>
<dd<?php if ($_attribute->decoratedIsLast){?> class="last"<?php }?>>
<select name="super_attribute[
<?php echo $_attribute->getAttributeId() ?>]" id="attribute
<?php echo $_attribute->getAttributeId() ?>" class="required-entry super-attribute-select">
<option>
<?php echo $this->__
('Choose an Option...') ?></option>
</select>
</dd>
<?php endforeach; ?>
</dl>
<script type="text/javascript">
var spConfig = new Product.Config(
<?php echo $this->getJsonConfig() ?>);
</script>
<?php endif;?>