Viewing 1 reply thread
You must be logged in to reply to this topic.
I have 6 rows of media grids. Each grid has 6 company logos. My client wants each logo to open it’s company’s website in another window.
I can’t find a way to link the logos to the sites, is it possible?
Thank you.
Hello,
Sorry but this is not possible with media grid. Use services media element instead to link the images with external links. Set them up as a grid.
To make the links open in new tab, go to vc_templates/services_media.php and find this line:
$output .= '<a href="'.esc_url($link).'"><div class="overlay">';
Replace with this:
$output .= '<a href="'.esc_url($link).'" target="_blank"><div class="overlay">';
Save changes.
Best regards!
You must be logged in to reply to this topic.