Hi isicmexico
I can't access cpanel you provided as the login info seems not to be correct.
I just updated this file via template manager in backend: /html/mod_articles_category/owl1.php
This line of code:
<span class="decor decor-<?php echo $i%12; ?>"></span>
by default, we have 3 icons for each 3 items while on your site has more than that so I change the code like above.
Next, you will need to update custom css a bit like we have on our demo site, for example, here is how we set background with icon for 3rd item:
.category-module.mod-owl .item-inner .decor.decor-2 {
background-image: url(../images/services/decor-2.png);
}
with my above code, now beside the default classes: decor-0, decor-1, decor-2, you will have new classes for next items in the list:
decor-3, decor-4, decor-5, decor-6, etc....
you will assign your own icon to these news classes, so it will look like:
.category-module.mod-owl .item-inner .decor.decor-3 {
background-image: url(../images/services/your_icon_here);
}
.category-module.mod-owl .item-inner .decor.decor-4 {
background-image: url(../images/services/your_icon_here);
}
.category-module.mod-owl .item-inner .decor.decor-5 {
background-image: url(../images/services/your_icon_here);
}
the same for other classes.