Hi Todd,
I can access backend of your site now.
For the access issue like this, if you use skype, you can reach me via: hiennm88 so you can send me directly.
I updated this file: /templates/ja_educatsy/acm/pricing/style-1.php
Line 35-39:
<?php for ($col = 0; $col < $count; $col++) :
$featured = $helper->get('data.pricing-col-featured', $col);
?>
<div class="col col-lg-<?php echo 12 / ($count); ?> col-md-12 col-sm-12 item <?php if ($featured): ?> col-featured shadow <?php endif ?>">
Now, when you set a column as featured column, it will have classes: col-featured + shadow, you can easily add custom style for these 2 new classes.
For example, you want to add style for the header of featured column, you can use this css:
.acm-pricing.style-1 .col-featured .col-header {
background: #38b775;
}
something like that.
Regards