I love the ACM on the top of startpage of Sensei, but I do not need the button with the Call To Action. I can remove one group but the other one does not give this option. Please advice.

    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>
    5 days later
    Write a Reply...
    You need to Login to view replies.