Hi,
i insert the element “portfolio grid” on my page but i want it open portfolio element in a new window.
How can i do it?
Best regards,
Luca
Hi Luca,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look? Can you also give us a link to the page with the portfolio grid.
Best regards,
Victoria
Hi,
yes thank you.
Best regards,
Luca
Hi,
The menu is lose because of the size of your title / logo.
Regarding your portfolio projects, to open on a new window you can use the following code
function add_custom_port_target(){
?>
<script>
jQuery(window).load(function(){
jQuery('a.grid-image').attr('target','_blank');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_port_target');
Let us know if that will work
Best regards,
Basilis