Viewing 1 reply thread
You must be logged in to reply to this topic.
I am trying to get the button in the header to open in a new window when clicked
Hello,
Sorry for the late reply.
Please go to file header.php and find this line:
<a href="<?php echo esc_attr($cl_redata['header_button_link']) ?>" class="btn-bt <?php echo esc_attr($cl_redata['overall_button_style'][0]) ?> header_button"><?php echo esc_attr($cl_redata['header_button']) ?></a>
Replace with this:
<a target="_blank" href="<?php echo esc_attr($cl_redata['header_button_link']) ?>" class="btn-bt <?php echo esc_attr($cl_redata['overall_button_style'][0]) ?> header_button"><?php echo esc_attr($cl_redata['header_button']) ?></a>
Best regards!
You must be logged in to reply to this topic.