Hi there,
As per image below, is it possible to change (or remove) the number of the featured image within the home page module? If so, where can I change it?
I assumed style-1.php within features-intro but wasn't sure what I can could change/remove?
Many thanks!

,

Hi

You can hide it by using this custom css:

.acm-features.style-1 .feature-content .number-decor {
    display: none;
}

or if you want to remove it completely, you can open the file: root/templates/ja_sport/acm/features-intro/tmpl/style-1.php

and remove lines 48-50:

<div class="text-outline-secondary number-decor">
<?php echo ($i<10) ? '0'.($i+1) : $i ;?>
</div>

That's great - many thanks, as always! 🙂

Write a Reply...
You need to Login to view replies.