Hi,
open templates\hot_ecommerce\css\template_css.php
find this:
Code:
div.moduletable h3 {
color:<?php echo $columnHeading; ?>;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(<?php echo $modulesHeadingBgStart; ?>), to(<?php echo $modulesHeadingBgEnd; ?>));
background: -moz-linear-gradient(<?php echo $modulesHeadingBgStart; ?>, <?php echo $modulesHeadingBgEnd; ?>);
background: linear-gradient(<?php echo $modulesHeadingBgStart; ?>, <?php echo $modulesHeadingBgEnd; ?>);
-pie-background: linear-gradient(<?php echo $modulesHeadingBgStart; ?>, <?php echo $modulesHeadingBgEnd; ?>);
behavior: url(templates/hot_ecommerce/css/PIE.php);
position:relative;
}
and modify it like this:
Code:
div.moduletable h3 {
color:<?php echo $columnHeading; ?>;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(<?php echo $modulesHeadingBgStart; ?>), to(<?php echo $modulesHeadingBgEnd; ?>));
background: -moz-linear-gradient(<?php echo $modulesHeadingBgStart; ?>, <?php echo $modulesHeadingBgEnd; ?>);
background: linear-gradient(<?php echo $modulesHeadingBgStart; ?>, <?php echo $modulesHeadingBgEnd; ?>);
-pie-background: linear-gradient(<?php echo $modulesHeadingBgStart; ?>, <?php echo $modulesHeadingBgEnd; ?>);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='<?php echo $modulesHeadingBgStart; ?>', endColorstr='<?php echo $modulesHeadingBgEnd; ?>');
behavior: url(templates/hot_ecommerce/css/PIE.php);
position:relative;
}