Couple of points whilst testing this...
With varying discount quantities the box did not align centrally like this :
Original.png
I had a hunt and did the following :
includes/templates/westminster_new/templates/tpl_modules_products_quantity_discounts.php
(not sure about this first one)
@@ -14,7 +14,7 @@
<?php
if ($zc_hidden_discounts_on) {
?>
- <table border="0" cellspacing="2" cellpadding="2">
+ <table class="QuantityDiscountCenter" border="0" cellspacing="2" cellpadding="2">
<tr>
<td colspan="1" align="center" class="dark">
<?php echo TEXT_HEADER_DISCOUNTS_OFF; ?>
(This is where it helped)
@@ -27,7 +27,7 @@
</tr>
</table>
<?php } else { ?>
- <table border="0" cellspacing="2" cellpadding="2">
+ <table class="QuantityDiscountCenter" border="0" cellspacing="2" cellpadding="2">
<tr>
<td colspan="<?php echo $columnCount+1; ?>" align="center" class="dark">
<?php
I then added the following to stylesheet.css
#productQuantityDiscounts td{border-bottom:1px solid #ddd;border-left:1px solid #ddd;border-right:1px solid #ddd;}
.dark{background:#ddd;padding:10px 15px;}
.addthis_sharing_toolbox{width:53%;margin:0 auto;}
+table.QuantityDiscountCenter {margin-left:auto; margin-right:auto;}
Centred.png
I am not sure that is a good solution but it seems to work for me (can't test on IE)
On another note, using Mini Opera I struggle to scroll the Categories menu. The second I touch the screen to scroll down the categories, the page starts to move down and then menu disappears. Dolphin and the built in Android browser are fine. Haven't solved that one yet !
B. Rgds
John
Bookmarks