• Hi,

    I have a selection of social media icons in the header and footer of my page. How can i make them open in a new tab? I understand i might need to add target=”_blank” somewhere but where? I tried looking to add it to the header.php but couldn’t work out where.

    Thank you in advance!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter tomvas

    (@tomvas)

    Please can someone suggest something?

    Thread Starter tomvas

    (@tomvas)

    ……….

    Thread Starter tomvas

    (@tomvas)

    Bump

    Hi tomvas,
    into the header.php and footer.php of your theme you have some lines like this: <li class="facebook" data-toggle="tooltip" data-placement="bottom" title="Facebook"><a href="<?php echo esc_url($wl_theme_options['fb_link']); ?>"><i class="fa fa-facebook"></i></a></li>
    You need just to add target=”_blank” as you said in this way:

    <li class="facebook" data-toggle="tooltip" data-placement="bottom" title="Facebook"><a target="_blank" href="<?php echo esc_url($wl_theme_options['fb_link']); ?>"><i class="fa fa-facebook"></i></a></li>

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Theme: Enigma] Making social icons open in new tab’ is closed to new replies.