I think if I read what you're asking, you want to center the "orange" boxes, right?
Try this:
/includes/templates/YOURTEMPLATE/templates/tpl_modules_attributes.php
around line 42 you have:
Code:
<?php
if ($options_attributes_image[$i] != '') {
?>
<?php echo $options_attributes_image[$i]; ?>
<?php
}
?>
<br class="clearBoth" />
change that to:
Code:
<div class="attribWrapperForMyBoxes">
<?php
if ($options_attributes_image[$i] != '') {
?>
<?php echo $options_attributes_image[$i]; ?>
<?php
}
?>
</div>
<br class="clearBoth" />
and then set a new class in your stylesheet for:
Code:
.attribWrapperForMyBoxes {text-align: center; }