
Originally Posted by
Kim
Before putting the hat on, would you explain how you discovered the problem and how you fixed it.
I realized how to finally fix it when I started to edit the More Information pages and saw the tiny text. The default font in my stylesheet was something like 62.5em -- which meant nothing to me because I'm used to fonts being "px". So...went into my stylesheet, changed the 62.5em to 12px.
I also put a style for it in the stylesheet.
Code:
#qtyDiscountTable {
border: 3px solid #C5B79E;
float: right;
margin: 0em 0em 0em 0em;
font-weight: 700;
}
In "tpl_product_info_display.php" put the table in a <div>:
Code:
<!--bof Quantity Discounts table -->
<div id="qtyDiscountTable">
<?php
if ($products_discount_type != 0) { ?>
<?php
/**
* display the products quantity discount
*/
require($template->get_template_dir('/tpl_modules_products_quantity_discounts.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_products_quantity_discounts.php'); ?>
<?php
}
?></div>
<!--eof Quantity Discounts table -->
Then depending on how the table is being styled in stylesheet, you can take out the borders & change the padding of the table in "tpl_modules_products_quantity_discount.php".
I have mine as "<table border="0" cellspacing="5" cellpadding="5">"
It's simple changes but a real pain to figure out for a noob Zenner.