antoinezelf Hi
You can use this css rule to hide these buttons:
.acm-features.style-1 .btn-action {
display: none;
}
if you want to remove in code, you can open this file: /templates/ja_sensei/acm/features-intro/tmpl/style-1.php
Remove code line 28-33:
<div class="btn-action">
<?php for ($i=0; $i < $count; $i++) :?>
<a class="btn btn-<?php echo $helper->get('btn-type', $i); ?>" href="<?php echo $helper->get('btn-link', $i); ?>"><?php echo $helper->get('btn-title', $i) ?> <span class="icon ion-ios-arrow-round-forward"></span>
</a>
<?php endfor; ?>
</div>