• Resolved Frankzappafication

    (@frankzappafication)


    Loving the theme and making use of the Front page slider however whilst I want the Call for Action text – I don’t want the button or the button section and can’t seem to figure out to; a. centre the Call for Action text & b. remove the column where the button is.

    Can anyone help?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Silkalns

    (@silkalns)

    Replace current call for action function in extras.php file which you can find on theme folder – inc with this one:

    // Call for action text area
    function sparkling_call_for_action() {
      if ( is_front_page() && of_get_option('w2f_cfa_text')!=''){
        echo '<div class="cfa">';
          echo '<div class="container">';
            echo '<div class="col-md-12">';
              echo '<span class="cfa-text">'. of_get_option('w2f_cfa_text').'</span>';
            echo '</div>';
          echo '</div>';
        echo '</div>';
      } else; {
      //Do nothing
      }
    }

    Some other tweaks might be required but those are up to you.

    Thread Starter Frankzappafication

    (@frankzappafication)

    thank you – perfect! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘call for action’ is closed to new replies.