| 1 |
<?php namespace TierPricingTable\Integrations\Themes; |
| 2 |
|
| 3 |
class TheRetailer { |
| 4 |
|
| 5 |
public function __construct() { |
| 6 |
add_action( 'wp_head', function () { |
| 7 |
?> |
| 8 |
<style> |
| 9 |
.tiered-pricing-table tbody td { |
| 10 |
padding: 10px !important; |
| 11 |
} |
| 12 |
|
| 13 |
.tiered-pricing-table th { |
| 14 |
padding-left: 10px !important; |
| 15 |
} |
| 16 |
</style> |
| 17 |
<?php |
| 18 |
} ); |
| 19 |
} |
| 20 |
} |
| 21 |
|