| Current Path : /home/nicedoo/www/wp-content/plugins/tier-pricing-table/src/Integrations/Themes/ |
| Current File : /home/nicedoo/www/wp-content/plugins/tier-pricing-table/src/Integrations/Themes/TheRetailer.php |
<?php namespace TierPricingTable\Integrations\Themes;
class TheRetailer {
public function __construct() {
add_action( 'wp_head', function () {
?>
<style>
.tiered-pricing-table tbody td {
padding: 10px !important;
}
.tiered-pricing-table th {
padding-left: 10px !important;
}
</style>
<?php
} );
}
}