I've searched and tried to fix this on my own, but alas I need some help. The Sub-Total .lineTitle and the .totalBox will not stay on the same line.
I attached an image of my shopping cart so you don't have to hit the site.
www.sweetzouzou.com
from my stylesheet
.totalBox {
text-align: right;
padding: 0.2em;
}
.lineTitle, .amount {
text-align: right;
padding: 0.2em;
}
from tpl_modules_order_totals.php
?>
<?php
/**
* Displays order-totals modules' output
*/
for ($i=0; $i<$size; $i++) { ?>
<div id="<?php echo str_replace('_', '', $GLOBALS[$class]->code); ?>">
<div class="lineTitle larger forward"><?php echo $GLOBALS[$class]->output[$i]['title']; ?></div>
<div class="totalBox larger forward"><?php echo $GLOBALS[$class]->output[$i]['text']; ?></div>
</div>
<br class="clearBoth" />
<?php } ?>
I hope this is an easy one ;-)
Thx Sweet



