Call For Action button to open a new window
-
Hi,
I’d like to make Call for Action button to open a new window instead of the existing one. I suppose I’ll have to make changes to part of extras.php code below, but not sure what exactly.
* Call for action text and button displayed above content */ 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-sm-8">'; echo '<span class="cfa-text">'. of_get_option( 'w2f_cfa_text' ).'</span>'; echo '</div>'; echo '<div class="col-sm-4">'; echo '<a class="btn btn-lg cfa-button" href="'. of_get_option( 'w2f_cfa_link' ). '">'. of_get_option( 'w2f_cfa_button' ). '</a>'; echo '</div>'; echo '</div>'; echo '</div>'; } } endif;
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Call For Action button to open a new window’ is closed to new replies.